2

我在 jQuery 中有一个 XML 对象:

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

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

如果我使用console.log(xml);,那很好。但我需要一个字符串。

4

1 回答 1

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/

于 2012-08-01T06:33:00.863 回答