gpt4 book ai didi

php - 我可以等待 location.href 加载页面吗?

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

是否可以使用 location.href 知道页面何时加载?我当前的代码如下所示,我想在页面加载完成后触发一些事件发生。我尝试使用 $.get 但它破坏了我当前的 jquery address 实现所以这行不通。

$('.search').click(function(){
location.href = "/search.php";
// trigger event here...
return false;
});

适用于我当前的设置:

$.get('search.php', function() {
alert('Page has finished loading');
});

还有其他选择吗?

最佳答案

你尝试过这个吗:

$(document).ready(function () {
alert('Page has finished loading');
});

编辑:删除了答案的第二部分,因为有目的的重定向否定了它的有用性

关于php - 我可以等待 location.href 加载页面吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7612285/

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