如何在 ajax html 响应中找到名为 findThis 的元素?我什至找不到第一个孩子(错误消息:对象不支持属性或方法'first')
$.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