gpt4 book ai didi

javascript - X秒后Jquery自动触发点击

转载 作者:行者123 更新时间:2023-12-03 12:38:56 24 4
gpt4 key购买 nike

我正在尝试自动点击我的网站上的特定链接,但它不起作用。另外,如果 html 不加载 jquery 来加载然后运行我的脚本,我也会使用代码..

我的代码没有点击...有什么想法吗?

<div id="mydiv">
<a id="aww" href="http://www.google.com" target="_blank">ss</a>
</div>

<script>
(function() {
// Load the script
var script = document.createElement("SCRIPT");
script.src = 'http://code.jquery.com/jquery-1.10.1.min.js';
script.type = 'text/javascript';
document.getElementsByTagName("head")[0].appendChild(script);

// Poll for jQuery to come into existance
var checkReady = function(callback) {
if (window.jQuery) {
callback(jQuery);
}
else {
window.setTimeout(function() { checkReady(callback); }, 100);
}
};

// Start polling...
checkReady(function($) {

$(document).ready(function(){
setTimeout(function() {
$('#aww').trigger('click');
}, 9000);
});


});
})();
</script>

最佳答案

为什么不直接使用纯 JS 呢?

<script>
setTimeout(function(){
var href = document.getElementById('aww').getAttribute('href');
window.location.href = href;
},2000);
</script>

</body>

关于javascript - X秒后Jquery自动触发点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23598590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com