gpt4 book ai didi

javascript - HTML5 URL更新无需刷新

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

我尝试使用 HTML5 window.history.pushState 函数,但无法完全正常工作。

这是函数:

    function changeUrl() {
window.history.pushState(object, "Title", "?side=annoncer&sletid=1");
}

这是应该调用它的链接:

   <a href="javascript:void(0);" onClick="changeUrl();">

我做错了什么?

最佳答案

您不需要设置对象

function changeUrl() {
window.history.pushState(null, "Title", "?side=annoncer&sletid=1");
}

检查一下,它会正常工作。

关于javascript - HTML5 URL更新无需刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11847742/

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