我试图访问iframe的内容但由于某种原因它无法正常工作。我可以这样做:
$('iframe').load(function (){
$('#iframeID').contents().find('SOMETHING').remove();
});
除此代码外,其他任何工作都有效:
$('iframe').load(function (){
$('#iframeID').contents().find('body *:not(.ThisClass *)').contents().filter(function() {
return this.nodeType == 3;
}).remove();
});
它应该有效,但它没有。可能是什么问题呢?我的控制台没有错误。