我得到了一个 xml 数据作为字符串变量。它有很多组<item>...</item>
我想知道如何提取所有组的所有数据<name>..</name>
并<item>
使用javascript将它们输出到textarea?
注意: getjson 抓取远程 xml 并将其作为内容变量: xml 设置示例:
<item>
<title>rober album</title>
<link></link>
<description></description>
<location></location>
<image_url></image_url>
<name>robert</name>
</item>
代码:
<script>
$.getJSON('http://anyorigin.com/get?url=http://asite.com/feed/latest&callback=?', function(data){
var Content = data.contents;
//here i want to parse all name element of remote xml and put it in textarea
});
</script>
</head>
<body>
<td><textarea rows="7" cols="15" name="outputtext" style="width: 99%;"></textarea></td>