javascript 得到url

得到当前网页名字的两种方法
<script>
var str=location.pathname;
a=str.substr(str.lastIndexOf("/")+1)
alert(a)
a=location.pathname.replace(/(.+)[///]/,"")
alert(a)
</script>

得到当前网页的URL
alert(location.href)
alert(window.location) 

你可能感兴趣的:(JavaScript,url)