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


HTML Location href用法及代碼示例


HTML中的Location href屬性用於設置或返回當前頁麵的完整URL。 Location href屬性還可用於將href值設置為指向另一個網站或指向電子郵件地址。 Location href屬性返回一個字符串,其中包含頁麵的整個URL,包括協議。

用法:

  • 它返回href屬性。
    location.href
  • 它用於設置href屬性。
    location.href = URL

以下程序說明了HTML中的Location href屬性:


範例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Location href Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM Location href Property</h2> 
    <p> 
      For returning the entire URL current page, 
      double click the "Return URL" button:  
    </p> 
    <button ondblclick="myhref()">Return URL</button> 
    <p id="href"></p> 
    <script> 
        function myhref() { 
            var h = location.href; 
            document.getElementById("href").innerHTML = h; 
        } 
    </script> 
</body> 
  
</html>

輸出:

單擊按鈕後:

範例2:設置href值以指向網站的另一個URL。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Location href Property</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM Location href Property</h2> 
    <p> 
      For redirecting to GeeksforGeeks homepage, 
      double click the "Redirect" button:
    </p> 
    <button ondblclick="myhref()">Redirect</button> 
    <script> 
        function myhref() { 
            location.href =  
              "https://www.geeksforgeeks.org"; 
        } 
    </script> 
</body> 
  
</html>

輸出:

單擊按鈕後:

支持的瀏覽器:Location href屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Location href Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。