gpt4 book ai didi

javascript - jQuery 在页面加载时,执行像单击功能一样?

转载 作者:行者123 更新时间:2023-11-28 21:14:56 25 4
gpt4 key购买 nike

我有一个点击函数,它运行类似于以下内容的代码:

$('#go').click(function(e){
var url = $("#url").val();
$this = $("#convert");
$this.css({"text-align":"center","font-size":"18px"});
$this.html("<a href='http://www.site.com/out/?u=" + url + "'>You will be redirected in <span id='counter'></span> seconds!</a>")
var count = 10;
var counter = document.getElementById('counter');

setInterval(function(){
count--;
counter.innerHTML = count;

if (count === 0) {
window.location = 'http://www.site.com/out/?u=' + url;
}
}, 1000);
});

但我也希望在页面加载时触发此操作。例如,如果访问者访问如下网址:

http://www.site.com/#http://www.google.com

它将在哈希值之后对 URL 运行点击函数..

我该如何去做呢?

最佳答案

jquery 加载触发点击事件:

    $(function(){
$('#go').click();
})

关于javascript - jQuery 在页面加载时,执行像单击功能一样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7866548/

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