码迷,mamicode.com
首页 > Web开发 > 详细

JS——BOM(Locate对象)

时间:2020-01-21 21:26:18      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:meta   对象   locate   htm   location   inf   页面   port   path   

1、location.href:返回当前页面的URL

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script>
            document.write("当前页面的URL:");
            document.write(location.href);
        </script>
    </body>
</html>

技术图片

 

 2、location.hostname:返回WEB主机的域名

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script>
            document.write("WEB主机的域名:");
            document.write(location.hostname);
        </script>
    </body>
</html>

技术图片

3、location.pathname 返回当前页面的路径和文件名

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script>
            document.write("当前页面的路径和文件名");
            document.write(location.pathname);
        </script>
    </body>
</html>

技术图片

 

 有中文乱码现象。

4、location.port 返回 web 主机的端口

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script>
            document.write("web 主机的端口 ");
            document.write(location.port);
        </script>
    </body>
</html>

技术图片

5、location.protocol 返回所使用的 web 协议

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script>
            document.write("使用的 web 协议:");
            document.write(location.protocol);
        </script>
    </body>
</html>

技术图片

JS——BOM(Locate对象)

标签:meta   对象   locate   htm   location   inf   页面   port   path   

原文地址:https://www.cnblogs.com/zhai1997/p/12222900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!