我得到整個HTML頁面在responseText,我只是想解析/ 篩選responseText到 得到一個特定的div說測試和基礎內容。我不想 喜歡修改服務器端代碼發送只需要在 responseText
div。如何從responseText獲得具體的div內容,其中包含Html頁面
url: "Someurl",
datatype: "text/html",
success : function(responseText)
{
alert(responseText);
dat = $(data).filter("#test").html();
alert(dat);//getting null
$('#test').html(dat);
}
responseText
包含
100的HTML行的.... .... ....更多的div標籤和其他 標籤 .... 100的HTML的線條
我使用jQuery和我試圖
$(responseText).filter("#test").html();
和我們編者也發現
你的意思是你「拿來主義找到了嗎?」你是如何使用它的? –
'$(data)'數據定義在哪裏? – wakooka
可能的答案可以在http://stackoverflow.com/questions/1529464/parsing-html-string-with-ajax-jquery?rq=1找到 看起來值得一試 –