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


HTML DOM value用法及代码示例


HTML中的DOM值属性用于设置或返回任何属性的值。

用法:

  • 它返回属性值。
    attribute.value
  • 用于为属性设置一个值。
    attribute.value = value

以下示例程序旨在说明HTML中的DOM值属性:


例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            DOM Value Property 
        </title> 
          
        <!-- script to change property value -->
        <script> 
            function myFunction() { 
                var x = document.getElementsByTagName("IMG")[0]; 
                x.getAttributeNode("src").value =  
"https://media.geeksforgeeks.org/wp-content/uploads/icon1.png"; 
            } 
        </script> 
    </head> 
      
    <body style = "text-align:center"> 
          
        <h1 style = "color:green;"> 
            GeeksforGeeks 
        </h1> 
          
        <h2>DOM Value Property</h2> 
          
        <img src =  
"https://media.geeksforgeeks.org/wp-content/uploads/icon2.png" 
        width="180" height="180"> 
          
        <p> 
           Click the button to change the value 
           of attribute "src" of the image. 
        </p> 
          
        <!-- Button to change DOM value property -->
        <button onclick = "myFunction()"> 
            Try it 
        </button> 
    </body> 
</html>                           

之前单击按钮:

单击按钮后:

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

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


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