得到当前网页名字的两种方法
内容摘要
<script>
var str=location.pathname;
a=str.substr(str.lastIndexOf("/")+1)
alert(a)
a=location.pathname.replace(/(.+)[\\/]/,"")
alert(a)
</script>
文章正文
得到当前网页名字的两种方法.
代码注释