gpt4 book ai didi

javascript - 更新页面和网址而不重新加载

转载 作者:行者123 更新时间:2023-12-02 17:37:21 25 4
gpt4 key购买 nike

如何在不重新加载网页的情况下更新网页和网址。我在SoundCloud看到了这个我想在我自己的项目中使用它。

这是我想要的想法:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="./js/jquery.min.js"></script>
</head>

<?php
$url = $_SERVER['REQUEST_URI'];

if (url == /login){
include 'php/login.php';
echo"<script>
$(document).ready(function() {'
history.pushState(null, null, '/login')
});
</script>"
}

if (url == /home){
include 'php/home.php'
echo"<script>
$(document).ready(function() {'
history.pushState(null, null, '/home')
});
</script>"
}
?>

</html>

问题是,例如,当我输入www.mydomain.com/home时,我得到(当然)一个服务器错误,表明该文件不存在。我该如何解决这个问题?

最佳答案

尝试在 JavaScript 中使用 window.location.hash=your_hash_string

关于javascript - 更新页面和网址而不重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22489865/

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