我正在嘗試向我的網站添加頁面轉換。但由於某些原因,當我點擊它重定向一個鏈接mywebsite.com/undefinedJavascript頁面轉換undefined
這是我使用
jQuery(document).ready(function($) {
$('.menu-item').click(function(event) {
event.preventDefault();
newLocation = this.href;
$('.preloader').fadeIn(1000, newpage);
});
function newpage() {
window.location = newLocation;
}
});
的代碼我無法得到它的工作。任何幫助,將不勝感激。
你沒有將新位置傳遞給你的函數 –