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


HTML Input Color name用法及代码示例


HTML DOM中的DOM输入颜色名称属性用于设置或返回名称属性的值。每个输入月字段都需要name属性。如果未在输入字段中指定name属性,则将根本不发送该字段的数据。

用法:

  • 它返回输入颜色名称属性。
    colorObject.name
  • 它用于设置输入颜色名称属性。
    colorObject.name = name

属性值:它包含单个属性值,即用于指定“颜色”字段名称的名称。


返回值:它返回一个字符串值,该字符串值表示输入“颜色”字段的名称。

示例1:本示例返回输入颜色名称属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Color name Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1> 
        GeeksForGeeks 
    </h1> 
    <h2>  
        HTML DOM Input Color name Property  
    </h2> 
  
    <p> 
        Select your favorite color:
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color"> 
    </p> 
  
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <p id="GFG" 
       style="color:green; 
              font-size:24px;"> 
  </p> 
  
    <!-- script to return  
     the input color -->
    <script> 
        function myGeeks() { 
            var x =  
                document.getElementById( 
                  "color").name; 
            
            document.getElementById( 
              "GFG").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置名称属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Color name Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1> 
        GeeksForGeeks 
    </h1> 
    <h2>  
        HTML DOM Input Color name Property  
    </h2> 
  
    <p> 
        Select your favorite color:
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color"> 
    </p> 
  
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <p id="GFG" 
       style="color:green; 
              font-size:24px;"> 
  </p> 
  
    <!-- script to return the input color -->
    <script> 
        function myGeeks() { 
            var x =  
                document.getElementById( 
                  "color").name = "Hello Geeks"; 
            
            document.getElementById( 
              "GFG").innerHTML =  
              "The value of the name attribute"+ 
              " was changed to " + x; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入颜色名称属性支持的浏览器如下:

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


相关用法


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