0
我正在使用jquery ajax與另一個頁面內容/ HTML加載頁的一部分。 \如何從HTML()提取HTML()的內容時通過AJAX
$(function() {
app.xhr = $.ajax({
url: url,
dataType: "html",
cache: false,
success : function(html)
{
app.html = $(html);
setTimeout(function(){
app.insertPageData();
app.xhr = null;
},100)
},
error : function()
{
alert("Not Found")
}
})
insertPageData : function()
{
$('div.data').html(app.html.find(".content").html())
}
});
所以這裏是IE的具體問題。 app.html包含頁面的HTML,並且我需要從與IE不兼容的頁面中提取一個特定的div html。
是否有任何其他方式從HTML中提取HTML?
謝謝/ Gursimron