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


HTML Base href用法及代码示例


HTML DOM中的DOM Base href属性用于设置或返回<base>元素的href属性的值。 href属性用于为网页中所有相对URL指定基本URL。

用法:

  • 它返回href属性。
    baseObject.href
  • 它用于设置href属性。
    baseObject.href = URL
  • 属性值:它包含值,即URL,它指定网页的基本URL。


    返回值:它返回一个字符串值,该值代表包含协议名称的网页的基本URL。

    例:本示例返回href属性。

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <base id="Geek_Base" 
              href="https://www.geeksforgeeks.org"> 
        <title> 
            HTML | DOM Base href Property 
        </title> 
    </head> 
      
    <body style="text-align:center;"> 
      
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
      
        <h2> 
          HTML | DOM Base href Property 
      </h2> 
      
        <button onclick="myGeeks()"> 
            Click 
        </button> 
        <h4><p id="Geek_p" 
               style="color:green; 
                      font-size:24px;"> 
          </p> 
      </h4> 
      
        <script> 
            function myGeeks() { 
      
                // returninh the href Propertyt.  
                var x = 
                    document.getElementById( 
                        "Geek_Base").href; 
      
                document.getElementById( 
                    "Geek_p").innerHTML = x; 
            } 
        </script> 
    </body> 
      
    </html>

    输出:

    在单击按钮之前:

    单击按钮后:

    示例2:本示例设置href属性。

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <base id="Geek_Base"
              href="https://www.geeksforgeeks.org"> 
        <title> 
            HTML | DOM Base href Property 
        </title> 
    </head> 
      
    <body style="text-align:center;"> 
      
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
      
        <h2> 
          HTML | DOM Base href Property 
      </h2> 
      
        <button onclick="myGeeks()"> 
            Click 
        </button> 
        <h4><p id="Geek_p"
               style="color:green; 
                      font-size:24px;"> 
          </p> 
      </h4> 
      
        <script> 
            function myGeeks() { 
      
                // returninh the href Propertyt.  
                var x = 
                    document.getElementById( 
                    "Geek_Base").href = "https://www.finecomb.com/"; 
      
                document.getElementById( 
                    "Geek_p").innerHTML =  
                "the value of the href attribute was changed to " + x; 
            } 
        </script> 
    </body> 
      
    </html>

    输出:
    在单击按钮之前:

    单击按钮后:

    支持的浏览器:DOM base href属性支持的浏览器如下:

    • 谷歌浏览器
    • Internet Explorer 10.0以上
    • Firefox
    • Opera
    • Safari


相关用法


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