0
IM使用此代碼JavaScript和localStorage的(像在PHP會議)javascript在localStorage但不重載頁面時如何顯示位置?
<script>
$(function(){
var a = localStorage.getItem('login');
if(a=="" || a==null){window.location.href = "dash-home.html";}
else{window.location.href = "dash-chat.html";}
});
</script>
但當劃線home.html的位置,該網頁一直刷新頁面(F5重複)
當重定向飛奔回家,這意味着在用戶登錄如果是,那麼你需要設置的localStorage的'login'值。 – Tushar
當你設置'window.location.href'時,頁面會刷新。 –
即時消息完成了,我問'重定向破折號家總是刷新? @Tushar –