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


HTML Anchor pathname用法及代码示例


HTML DOM中的DOM锚路径名属性用于设置或返回href属性值的路径名部分。所有浏览器将返回“/test.htm”,而IE 9将返回“test.htm”。

用法:

  • 它返回路径名属性。
    anchorObject.pathname
  • 它用于设置路径名属性。
    anchorObject.pathname = path

属性值:它包含值,即path,它指定URL的路径名。


返回值:它返回一个表示URL路径名的字符串值。

示例1:本示例返回URL的路径名。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Anchor pathname Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1> 
          GeeksForGeeks 
      </h1> 
  
        <h2> 
          DOM Anchor pathname Property 
      </h2> 
  
        <p>Welcome to 
            <a href= 
     "http://www.example.com:80/test.htm#part2" 
               id="GFG"
               rel="nofollow"
               target="_self">  
                GeeksforGeeks  
            </a> 
        </p> 
  
        <button onclick="myGeeks()"> 
          Submit 
      </button> 
  
        <p id="sudo" 
           style="color:green; 
                  font-size:25px;"> 
      </p> 
  
        <script> 
            function myGeeks() { 
                
                var x =  
                    document.getElementById( 
                      "GFG").pathname; 
                
                document.getElementById( 
                  "sudo").innerHTML = x; 
            } 
        </script> " 
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例设置URL的路径名。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Anchor pathname Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1> 
          GeeksForGeeks 
      </h1> 
  
        <h2> 
          DOM Anchor pathname Property 
      </h2> 
  
        <p>Welcome to 
            <a href= 
       "http://www.example.com:80/test.htm#part2" 
               id="GFG"
               rel="nofollow" 
               target="_self">  
                GeeksforGeeks  
            </a> 
        </p> 
  
        <button onclick="myGeeks()"> 
          Submit 
      </button> 
  
        <p id="sudo" 
           style="color:green; 
                  font-size:25px;"> 
      </p> 
  
        <script> 
            function myGeeks() { 
                
                var x =  
                    document.getElementById( 
                      "GFG").pathname; 
                
                document.getElementById( 
                  "sudo").innerHTML =  
                  "The pathname will be changd now"; 
            } 
        </script> " 
    </center> 
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Anchor Pathname属性支持的浏览器:

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


相关用法


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