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