Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 iframe 加载后删除隐藏的类,我的代码http://jsfiddle.net/rzP5S/3/,我尝试使用 .ready() 但没有用
你可以试试
<iframe onload="removeClass();" ... />
编辑:
stackoverflow 上的相关线程:动态插入的 iframe 中的 jQuery .ready
$(window).load(function () { //Use removeClass() here $('#contentpage').children().removeClass('onePost'); });