gpt4 book ai didi

javascript - 使用 Mootools 选择 iframe 内容中的元素?

转载 作者:行者123 更新时间:2023-11-29 18:17:32 26 4
gpt4 key购买 nike

有没有一种方法可以使用 Mootools 选择器来选择 iframe 内容中的元素?

$('#myIframe input').addEvent('focus', function() {
// Do something
});

提前致谢!

最佳答案

如果 iFrame 在同一个域中,并且您在其中使用 Mootools,您可以尝试:

$('myIframe').contentDocument.getElements('input').addEvent(

Example

否则试试这个:

$('myIframe').contentDocument.querySelector('input').addEventListener(

Example


编辑:

如果您想捕获 load 事件,然后添加 focus 监听器,您可以使用:

var iframe = new IFrame({
src: '/RN95f/3/show',
styles: {
border: '2px solid #ccf'
},
events: {
load: function () {
alert('The iframe has finished loading.');
this.contentDocument.getElements('input').addEvent('focus', function () {
// Do something
alert('focus on input detected!');
console.log(this);
});
}
}
});
$(document.body).adopt(iframe);

Example

关于javascript - 使用 Mootools 选择 iframe 内容中的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21784219/

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