我想在iframe中显示一个页面,它将在与我的应用程序相同的服务器上运行,我想通过在页面上找到一个元素然后再添加一个按钮来在每个页面出现时触发一个事件具有某些功能的元素。那可行吗?我如何在iframe上放置一个事件,这样每当创建一个具有该类的项目时,它就会运行我的代码?
答案 0 :(得分:0)
请参阅此处jQuery/JavaScript: accessing contents of an iframe
假设相同的域名,取自其他答案
$("#iFrame").contents().find("#someDiv").removeClass("hidden");
// gets the element
$("#iFrame").contents().find("#someDiv")
// so I assume this would work
$("#iFrame").contents().find("#someDiv").on(...)