gpt4 book ai didi

jquery - window.location.href 不适用于 Chrome

转载 作者:行者123 更新时间:2023-12-04 04:46:12 29 4
gpt4 key购买 nike

此代码适用于 Firefox 但不适用于 Chrome。我相信它是 window.location.href 但我该怎么做才能让 chrome 工作。基本上这会切换页面。

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.6.4.js"></script>
<script>
$(document).keydown(function(e){
if (e.keyCode == 37) { // left
window.location.href = $('#prev').attr('href');
return false;
} else if (e.keyCode == 39) { // right
window.location.href = $('#next').attr('href');
return false;
}
});


</script>


</head>
<body>


<div style="display:hidden;">
<a id="next" href=<?php echo "readerapp.php?mode=$mode&pagenumber=$next";?>></a>
<a id="prev" href=<?php echo "readerapp.php?mode=$mode&pagenumber=$last";?>></a>
</div>
</body>
</html>

最佳答案

我遇到了同样的问题,我找到了两个解决方法。第一种方法是设置一个超时帧,所以代码是这样的:

setTimeout(function () { document.location.href = "nextpage.html" }, 1000);

第二种解决方案是将下一页分配给 window.location,如下所示:

window.location.assign("nextpage.html");

希望对您有所帮助。

关于jquery - window.location.href 不适用于 Chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18138753/

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