我正在为 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
});
我见过的其他帖子通常在不同的域上有问题(这没有)。但是,仍然没有检测到该事件。
可以做这样的事情吗?