gpt4 book ai didi

javascript - 如何仅使用 onload 函数而不是 javascript 删除 iframe 中的类

转载 作者:行者123 更新时间:2023-11-28 02:54:42 27 4
gpt4 key购买 nike

如何仅使用 onload 函数而不是 javascript 等删除 iframe 中的类?

我对 iframe 的编码是

<iframe height="182" onload="this.height=this.contentWindow.document.body.scrollHeight;" scrolling="no" src="(html site I'm working with, same domain)" width="100%" frameborder="0"/>

我听说过 removeClass() 但不确定如何使用 onload 将其实现到 iframe 中。提前致谢

注意* div 只有一个类,没有一个 id(示例类是 'd2l-action-buttons')

最佳答案

你会通过 frames['your frame name'] 得到 ifram 文档试试这个。

<iframe height="500" name="utm"
src="schould be same domain" onload="Inside_iFrame">
</iframe>

function Inside_iFrame(){
console.log($(this, frames['utm']))
var framDocument=$(this, frames['utm'])
framDocument.find('your element').removeClass('your class')
};

关于javascript - 如何仅使用 onload 函数而不是 javascript 删除 iframe 中的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46515210/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com