gpt4 book ai didi

jQuery XML 对象到字符串

转载 作者:行者123 更新时间:2023-12-01 06:00:43 25 4
gpt4 key购买 nike

我在 jQuery 中有一个 XML 对象:

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

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

如果我使用console.log(xml);,那就没问题了。但我需要一根绳子。

最佳答案

使用这个例子

<!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/

关于jQuery XML 对象到字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11753677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com