如果page是index.html,如何运行jquery脚本。 当我在浏览器中输入URL时http://qubedns.co.in/将自动执行但不显示主页名称(默认)。 不显示http://qubedns.co.in/index.html
当用户点击网址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];
}
是不是?任何其他解决方案?
答案 0 :(得分:0)
如果您尝试这样做,那么您将获得全部网址
$(location).attr('href');
你可以尝试这样......并查看此链接
http://en.proft.me/2014/08/1/how-work-location-url-javascript-jquery-angularjs/
var currPageView;
if($(location).attr('hostname')=='http://qubedns.co.in'){
currPageView == window.location.hostname + '/' + 'index.html';
}