jquery 我如何在网页上放置一个脚本,使其在十秒后点击坐标?[closed]

mwg9r5ms  于 2022-11-03  发布在  jQuery
关注(0)|答案(1)|浏览(141)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
5天前关闭。
Improve this question
如何在网页上放置一个脚本,使其在十秒后单击坐标?
我在页面上有一个广告,我想在十秒后自动点击该部分,并在iframe中显示它。
我用这个代码,它不工作。

function simulateClick(x, y) { jQuery(document.elementFromPoint(x, y)).click(); }
setTimeout(simulateClick(100, 250),10000);
setTimeout(simulateClick(400, 250),10000);
chy5wohz

chy5wohz1#

您可以像这样创建div:

<div style="position: absolute;left:x; top:y;" id="s"></div>

和脚本:

document.getElementById("s").click();

相关问题