Display XML content in HTML page

前端 未结 5 1919
情书的邮戳
情书的邮戳 2020-11-27 05:38

How to display XML and other type of data in same page ?

    

    
        <         


        
5条回答
  •  独厮守ぢ
    2020-11-27 06:01

    You can use the old

    </code> tag. I don't know about browser support, but it should still work.</p> <pre><code><HTML> your code/tables <xmp> <catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> <country>Columbia</country> <price>10.90</price> <year>1985</year> </cd> </catalog>

    Output:

    your code/tables
    
        
            Empire Burlesque
            Bob Dylan
            USA
            Columbia
            10.90
            1985
        
    
    

提交回复
热议问题