当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM URL用法及代码示例


HTML中的URL属性用于返回包含当前文档的完整URL的字符串。该字符串还包括HTTP协议,例如(http://)。

用法:

document.URL

下面的程序演示了HTML中的document.URL属性:


例:

<!DOCTYPE html> 
<html> 
    <head>  
        <title>DOM document.URL() Property</title>  
        <style>  
            h1 {  
                color:green;  
            }  
            h2 { 
                font-family:Impact; 
            } 
            body {  
                text-align:center;  
            }  
        </style>  
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1>  
        <h2>DOM document.URL() Property</h2>  
        <p>For displaying the URL of the document, double  
        click the "View URL" button:</p> 
        <button ondblclick="myURL()">View URL</button> 
        <p id="url"></p> 
        <script> 
            function myURL() { 
                var gfg = document.URL; 
                document.getElementById("url").innerHTML = gfg; 
            } 
        </script> 
    </body> 
</html>                    

输出:

支持的浏览器:document.URL属性支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM URL Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。