2
我有js以下代碼。當我點擊網頁重新加載頁面後調用js函數
function createNote() {
alert('page created'); // for example note is created here
window.location = document.URL; // refresh page to show new added note
showEditNotePopup();
}
function showEditNotePopup() {
alert('show note edit page'); // for example edit note popup shown here
}
上面代碼中的「木箱注意」按鈕正常工作和創建筆記,也使用window.location = document.URL;
清爽頁面createNote()
函數被調用。但重新加載頁面後,它不會調用showEditNotePopup(
)函數。有什麼方法可以在不使用AJAX的情況下實現這一點。
刷新使用只是:location.reload() – mgraph