我在 IFRAME 中有一个内容,我需要在鼠标单击时找到顶部和左侧坐标。
我正在使用以下代码查找顶部和左侧坐标,但顶部(e.pageY)坐标在 IFRAME 滚动时给出了错误的位置。
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);
});