guys我試過這個window.open("FirstPage.html", "_self");
和window.open("FirstPage.html";"_self");
和window.location.href="FirstPage.html";
在同一個標籤中打開第二頁,但它什麼都沒有做......請幫忙? 這就是我稱之爲在javascript中打開同一個標籤的頁面firefox
function deleteCookie() {
setCookie("userdata"," ", 1);
setCookie("diff", " ", 1);
window.open('FirstPage.html';'_self');
}
,然後從onclcik
<button type="button" onclick="deleteCookie()">Forget Me</button></td>
你在iframe裏面嗎?你如何執行你的js? – 2015-02-05 17:32:47
@Teemu我編輯了帖子..請看看:) – 2015-02-05 17:38:58
但是你怎麼稱呼這個功能呢?從鏈接?從'onsubmit'處理程序?從'area' onclick。所有這些將阻止'window.location'工作,'open()'通常會在瀏覽器的彈出窗口阻止程序打開時失敗。 – Teemu 2015-02-05 17:42:21