jQuery XML对象到字符串

时间:2012-08-01 06:26:35

标签: jquery xml-parsing

我在jQuery中有一个XML对象:

var xml_srt = ^xml string^;    
xmlDoc = $.parseXML( xml_string );
xml = $( xmlDoc );

它工作正常,但我不知道如何从这个对象中创建一个字符串。

如果我使用console.log(xml);,那就没关系了。但我需要一个字符串。

1 个答案:

答案 0 :(得分:0)

使用此示例

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>

<p id="someElement"></p>
<p id="anotherElement"></p>



<script>
var xml = "<rss version='2.0'><channel><title>RSS Title</title></channel></rss>",
    xmlDoc = $.parseXML( xml ),
    $xml = $( xmlDoc ),
    $title = $xml.find( "title" );

/* append "RSS Title" to #someElement */
$( "#someElement" ).append( $title.text() );

/* change the title to "XML Title" */
$title.text( "XML Title" );

/* append "XML Title" to #anotherElement */
$( "#anotherElement" ).append( $title.text() );
</script>

</body>
</html>

了解更多信息:http://api.jquery.com/jQuery.parseXML/