我正在尝试访问 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();
});
它应该工作,但它没有。可能是什么问题呢?我的控制台中没有错误。