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


HTML Input URL form用法及代碼示例


DOM輸入URL表單屬性用於返回包含URL字段的表單的引用。它是隻讀屬性,成功時將返回一個表單對象。

用法:

urlObject.form

以下示例程序旨在說明窗體屬性的使用。
例:


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM Input URL form Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
  
        <h2> 
          DOM Input URL form Property 
      </h2> 
  
        <label for="uname" 
               style="color:green"> 
      </label> 
  
            <form id="geeks"> 
                <input type="url" 
                       id="gfg" 
                       placeholder="Enter URL" 
                       size="20"
                       pattern="https?://.+" 
                       title="Include http://" 
                       maxlength="20"> 
            </form> 
            <br> 
            <br> 
  
            <button type="button"
                    onclick="geeks()"> 
                Click 
            </button> 
  
            <p id="GFG" 
               style="color:green; 
                      font-size:25px;"> 
      </p> 
  
            <script> 
                function geeks() { 
                    
                    var link = 
                        document.getElementById( 
                          "gfg").form.id; 
                    
                    document.getElementById( 
                      "GFG").innerHTML = link; 
                } 
            </script> 
    </center> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:DOM輸入URL表單屬性支持的瀏覽器如下所示:

  • 穀歌瀏覽器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相關用法


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