我有一個非常簡單的體育網站,其中的主頁有不同的體育項目,如足球,籃球,網球等的鏈接。我想要的是當用戶點擊足球時,要存儲的價值,以便下次訪問者進入頁面時,將打開足球頁面。HTML5主頁基於菜單點擊
到目前爲止我嘗試使用html5 localstorage,但我無法看到它的工作。
// Check browser support
if (typeof(Storage) !== "undefined") {
// Store
localStorage.setItem("homepage", "index");
// Retrieve
document.getElementById("result").innerHTML = localStorage.getItem("homepage");
} else {
//document.getElementById("result").innerHTML = "Sorry, your browser does not support Web Storage...";
}
function homepage_football(){
localStorage.setItem("homepage", "football");
}
HTML - 首頁
<a href="<?php echo site_url()."/sport/football/"?>" onclick="homepage_football()">
<a href="<?php echo site_url()."/sport/basketball/"?>" onclick="homepage_basketball()">
<a href="<?php echo site_url()."/sport/netball/"?>" onclick="homepage_netball()">
你是如何將用戶重定向? –
顯示您正在使用的HTML。 – Justinas