當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。