JQueryUI:单击鼠标放置对话框
我想将 jquery 对话框放置在用户单击屏幕的位置。
到目前为止我已经:
$("#something").click(function(e){
$("#myDialog").dialog( "option", "position", [e.pageX,e.pageY]);
$("#myDialog").dialog('open');
});
但是由于一些页面滚动问题,这不起作用。我怀疑如果我不必向下滚动页面即可到达我单击的 id="something" 元素,那么它会起作用。 我认为这是因为Y(高度)位置是整个页面位置而不是可视区域。
有没有办法获取可视区域 XY 坐标或计算可视区域的大小并进行一些时髦的数学来纠正页面 XY 坐标?
谢谢。
I want to place the jquery dialog box where the user clicks on the screen.
so far I have:
$("#something").click(function(e){
$("#myDialog").dialog( "option", "position", [e.pageX,e.pageY]);
$("#myDialog").dialog('open');
});
But this doesnt work due to some page scrolling issues. I suspect it would work if I didnt have to scroll the page down to get to the element with id="something" that I click.
I think that this is because the Y (height) position is the whole page position rather than the viewable area.
Is there a way to either grab the viewable area XY co-ords or calculate the size of the viewable area and do some funky maths to correct the page XY co-ords?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: