我的 IFRAME 加载了外部内容(ibnlive.in.com),我无法处理该框架中的点击事件。
这是我的代码,
var iframeDoc = $('#bookcontentHeight').contents().get(0);
// Bind event to iframe document
$(iframeDoc).bind('mouseup', function(e) {
e.preventDefault();
$("#custom-menu").css({ top: e.pageY + "px", left: e.pageX + "px" }).show(100);
});
但我可以处理加载在 IFRAME 中的本地数据,
<iframe src="books/1.xhtml" width="100%" id="bookcontentHeight" frameborder="0" marginheight="0" marginwidth="0" > </iframe>
我如何处理从外部源加载的点击事件。