如何在ajax html響應中找到名爲findThis的元素?我甚至無法找到的第一個孩子(的錯誤消息:對象不支持屬性或方法「第一」)jquery ajax通過返回html解析
$.ajax({
type: "GET",
url: www.someWebSite.com,
contentType: "application/x-www-form-urlencoded",
dataType: "text/html",
success: function (html) {
var topHtml= $(html).first();
}
});
我使用jQuery 1.8.2
'dataType:「html」'修復了嗎? – Barmar
也許試試'$(html)[0] .firstChild'直接訪問DOM方法? –
我試過了,沒有工作:( – developer747