1. 程式人生 > >JavaScript----location物件

JavaScript----location物件


    <script language="JavaScript">
       document.write("<br>-----------------------------location物件---------------------------<br>");
       document.write("<br>host:本機地址 埠號 "+location.host);
       document.write("<br>hostname:本機地址 "+location.hostname);
       document.write("<br>href:協議 本機地址 埠號 專案名 專案頁面 "+location.href);
       document.write("<br>pathname:專案名 專案頁面 "+location.pathname);
       document.write("<br>port:埠號 "+location.port);
       document.write("<br>search "+location.search);
</script>