我需要删除iframe加载后隐藏的类,我的代码http://jsfiddle.net/rzP5S/3/,我尝试使用.ready()但是没有用
答案 0 :(得分:0)
你可以尝试
<iframe onload="removeClass();" ... />
编辑:
stackoverflow上的相关线程:jQuery .ready in a dynamically inserted iframe
答案 1 :(得分:0)
你可以尝试
$(window).load(function () {
//Use removeClass() here
$('#contentpage').children().removeClass('onePost');
});