//获取域名 //host = window.location.host; //host2=document.domain; //获取页面完整地址 //url = window.location.href; //document.write("
host="+host) //document.write("
host2="+host2) //document.write("
url="+url) //document.write("
url="+window.location.pathname) // 取当前页面名称(不带后缀名) // function pageName() // { // var a = window.location.href; // var b = a.split("/"); // var c = b.slice(b.length-1, b.length).toString(String).split("."); // return c.slice(0, 1); // } //document.write("
url="+pageName())