當我在下面的case1中使用document.location.reload()
時,它不起作用。但是當我在case2中添加一個alert()
時,它可以工作。我想弄清楚發生了什麼?Javascript document.location.reload does not work
//case1: does not work
document.location='rc_msg.php?remove=0';
document.location.reload();
//case2: work
document.location='rc_msg.php?remove=0';
document.location.reload();
alert("OK!!");
我沒有注意到,我進入 '=' 兩次,我很抱歉。 我曾嘗試下面的意見解決方案,但他們都沒有工作
'document.location'是一個對象,你試圖將它與一個字符串進行比較... –
你的代碼沒有意義......你想要做什麼?寫下你真實的代碼。 – epascarello