gpt4 book ai didi

javascript - 检测 iframe 中的点击事件

转载 作者:IT王子 更新时间:2023-10-29 03:04:30 25 4
gpt4 key购买 nike

我正在为 TinyMCE 编写一个插件,但在检测 iframe 内的点击事件时遇到了问题。

根据我的搜索,我得出了这个结论:

加载 iframe:

<iframe src='resource/file.php?mode=tinymce' id='filecontainer'></iframe>

iframe 中的 HTML:

<input type=button id=choose_pics value='Choose'>

jQuery:

//Detect click
$("#filecontainer").contents().find("#choose_pic").click(function(){
//do something
});

我看到的其他帖子通常在不同的域中存在问题(但没有)。但是,仍然没有检测到该事件。

这样的事能做吗?

最佳答案

我是这样解决的:

$('#filecontainer').load(function(){

var iframe = $('#filecontainer').contents();

iframe.find("#choose_pics").click(function(){
alert("test");
});
});

关于javascript - 检测 iframe 中的点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13439303/

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