0
如何在頁面爲index.html的情況下運行jquery腳本。 當我在瀏覽器中輸入URL時,如http://qubedns.co.in/會自動執行但不顯示主頁名稱(默認)。 不像http://qubedns.co.in/index.html如何在頁面爲index.html的情況下運行jquery腳本
我想要當前頁面名稱,當用戶點擊網址http://qubedns.co.in/運行一些腳本。如果我得到頁面名稱'index/html',我會完成它。
我用於其他頁面
var currPageView = document.location.pathname.match(/[^\/]+$/)[0];
if(currPageView == 'index.html')
{
// My Script here
}
我已經嘗試:
var currPageView;
if($(location).attr('href')=='http://qubedns.co.in'){
currPageView == window.location.host + '/' + 'index.html';
}else{
currPageView = document.location.pathname.match(/[^\/]+$/)[0];
}
是不是?其他解決方案?
使用'窗口。 location.href.match(/index.html $ /)。length> 0' –