是否可以通过以下方式访问我用jQuery打开的file.html的DOM:
generateVocabulary() {
$.ajax({
url: "file.html",
success: function (result) {
// Some actions with file.html DOM here
// to get into the main document just what I need
}
});
}
我需要计算外部文档中特定标记的数量,并获取某些特定标记的innerHTML。可能还有其他一些方法吗?
答案 0 :(得分:2)
您可以简单地执行以下操作:
$.ajax({url:"file.html",success:function(result){
var dom = $(result);
console.log(dom.find("someselector").length);
dom.find("someselector").html("something else");
}});