위치 주소 표시줄 개체LOGIN

위치 주소 표시줄 개체

위치 주소 표시줄 개체

  • href: 주소 표시줄에서 전체 주소를 가져옵니다. JS 웹페이지 점프가 구현될 수 있습니다. location.href = "http://www.sina.com.cn";

  • hostname: 호스트 이름

  • pathname: 파일 경로 및 파일 이름

  • search: 쿼리 문자열.

  • protocol: 프로토콜(예: http://, ftp://

  • hash: 앵커 이름) 예: #top

  • reload([true]): 웹 페이지를 새로 고칩니다. true 매개변수는 강제 새로 고침을 의미합니다

참고: 모든 속성이 다시 할당되면 웹 페이지가 자동으로 새로 고쳐집니다.

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
        <script type="text/javascript">
            //实例:测试不同浏览器
            var str = "<h2>地址栏对象</h2>";
            str += "地址栏地址:"+location.href;
            str += "<br>主机名:"+location.hostname;
            str += "<br>文件路径及文件名:"+location.pathname;
            str += "<br>协议:"+location.protocol;
            document.write(str+"<hr>");
        </script>
    </head>
    <body >
    </body>
</html>


다음 섹션
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script type="text/javascript"> //实例:测试不同浏览器 var str = "<h2>地址栏对象</h2>"; str += "地址栏地址:"+location.href; str += "<br>主机名:"+location.hostname; str += "<br>文件路径及文件名:"+location.pathname; str += "<br>协议:"+location.protocol; document.write(str+"<hr>"); </script> </head> <body > </body> </html>
코스웨어