我对iframe有疑问。 例如,我有html页面,其中包含iframe内部。 像这样:
<html>
<body>
<div style="text-align:center;">
<iframe id="mysection" data="http://www.cnn.com" width="950" height="700"></iframe>
</div>
</body>
</html>
&#13;
我想在iframe中获取任何点击的元素。有可能吗? 注意:iframe src没有相同的域
$(document).on('click', function(e) {
console.log("EVENT DUMMY ID");
console.log(e.target);
console.log("=====");
});
&#13;