我尝试了许多不同的选项,但似乎没有任何效果
我有一个带有许多内联 css 样式的 iframe,其中包含 !important 标签我想在 iframe 加载后覆盖它们
这是我的 jquery 和我失败的 jsfiddle
$(document).ready(function() {
$('<iframe />').load(function(){
alert('the iframe is done loading');
$(".poweredBy").css("display", "none");
});
});