js获取当前域名or完整地址
js获取当前域名or完整地址
1234567891011<script language="javascript">//获取域名host = window.location.host;host2=document.domain;//获取页面完整地址url = window.location.href;document.write("<br>host="+host)document.write("<br>host2="+host2)document.write("<br>url="+url)</script>