**已关闭。**此问题需要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);
1条答案
按热度按时间chy5wohz1#
您可以像这样创建div:
和脚本:
宰