码迷,mamicode.com
首页 > 编程语言 > 详细

原生JavaScript获取当前页面路径

时间:2016-04-06 13:00:29      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

var currentPageUrl = "";
if (typeof this.href === "undefined") {
    currentPageUrl = document.location.toString().toLowerCase();
}
else {
    currentPageUrl = this.href.toString().toLowerCase();
}

 

原生JavaScript获取当前页面路径

标签:

原文地址:http://www.cnblogs.com/shaoing/p/5358614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!