前言:
眼前我们对“js模拟点击网页某个位置怎么设置”大约比较珍视,各位老铁们都需要学习一些“js模拟点击网页某个位置怎么设置”的相关资讯。那么小编在网上收集了一些有关“js模拟点击网页某个位置怎么设置””的相关知识,希望大家能喜欢,姐妹们快快来学习一下吧!var txt = window.getSelection?window.getSelection().toString():document.selection.createRange().text;let sel = window.getSelection()var range = sel.getRangeAt(0);// 获取选中的可是区域块var rect = range.getBoundingClientRect();//获取 x 轴坐标console.log(rect.x)//获取 y 轴坐标console.log(rect.y)//如果页面滚动后, 获取 x 轴坐标var scrollW = $(document).scrollLeft();console.log(rect.x + scrollW)//如果页面滚动后, 获取 y 轴坐标var scrollH = $(document).scrollTop();console.log(rect.x + scrollH)
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。