如何在不重新加載網頁的情況下更新網頁和網址。我在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例如我得到(當然)服務器錯誤的文件不存在。我該如何解決這個問題?
你不需要爲每一行回聲 – 2014-03-18 20:06:25
這是正確的鏈接 – Idris
聽起來像你需要一些AJAX調用 –