0
我使用Ajax請求從我的網頁上獲取數據:如何讓html代碼包含隨機文本時使jQuery過濾器工作?
$.get("http://localhost/test.php", {id: myid},
function(data) {
var $r = $(data);
alert($r.filter('.info').text());
});
,一切工作正常時的test.php包含正確無誤線路是這樣的:
<span class="info">show me this info</span>
但是當東西說明了沒有格式 - 例如錯誤或隨機文本在正確的HTML代碼前:
error text without formatting or random text
<span class="info">show me this info</span>
然後Ajax請求不再解析其它線路從.info
得到的值。我得到空警報。這是爲什麼?而如何防止這種情況呢?