<div class="news"><a href="subsides/news.php">
<p id="p1">Text comes here</p>
<p id="p2">Another text comes here</p>
<p id="p3">...</p>
<p id="p4">...</p></a></div>
<div class="news"><a href="subsides/news.php">
<p id="p1">Text comes here</p>
<p id="p2">Another text comes here</p>
<p id="p3">...</p>
<p id="p4">...</p></a></div>
如上所述,我有一個帶有四個p標籤的div,我想從xml加載文本! 我試過了,在這裏搜索,但發現第n個適合我的情況! xml文件和javascript怎麼樣?如何從xml文檔加載文本內容到div /段
<?xml version="1.0" encoding="utf-8"?>
<news name = "one">
<p id="p1">bla bla bla</p>
<p id="p2">bla bla bla</p>`
</news>
和JavaScript:
$.ajax({
url: "news.xml",
type: "GET",
dataType: "xml",
success: function (xml) {
var xmlDoc = $.parseXML(xml),
$xml = $(xmlDoc);
$xml.find('news[name="one"]').each(function() {
$(".news").append($(this).text());
});
}
});
http://stackoverflow.com/questions/16417211/load-xml-file-content-into-div-using-jquery 這看起來像你想要什麼。作爲第一個結果,快速谷歌搜索將其拉高。 – Th3BFG
是的,試過那個!但是......我做錯了.. – Arni