-2

我需要在 iframe 加载后删除隐藏的类,我的代码http://jsfiddle.net/rzP5S/3/,我尝试使用 .ready() 但没有用

4

2 回答 2

0

你可以试试

<iframe onload="removeClass();" ... />

编辑:

stackoverflow 上的相关线程:动态插入的 iframe 中的 jQuery .ready

于 2012-08-26T08:53:23.650 回答
0

你可以试试

$(window).load(function () {
 //Use removeClass() here
 $('#contentpage').children().removeClass('onePost');
});
于 2012-08-26T08:59:02.300 回答