HTML DOM中的DOM輸入顏色表單屬性用於將引用返回到包含顏色選擇器is的表單。它是隻讀屬性,成功時將返回一個表單對象。
用法:
colorObject.form
例:以下示例程序旨在說明“輸入顏色”表單屬性的使用。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Color form Property
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
HTML DOM Input Color form Property
</h2>
<form id="myGeeks">
<label>
Select your favorite color:
</label>
<input type="color"
value="#009900"
name="Geek_color"
id="color">
</form>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="color:green;
font-size:24px;">
</p>
<script>
function myGeeks() {
var x =
document.getElementById(
"color").form.id;
document.getElementById(
"GFG").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
按下按鈕後:
支持的瀏覽器:下麵列出的DOM輸入顏色表單屬性支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input Color name用法及代碼示例
- HTML Input Color value用法及代碼示例
- HTML Input Color autocomplete用法及代碼示例
- HTML Input Color defaultValue用法及代碼示例
- HTML Input Color disabled用法及代碼示例
- HTML Input Color autofocus用法及代碼示例
- HTML Input Color type用法及代碼示例
- HTML Input URL form用法及代碼示例
- HTML Input Range form用法及代碼示例
- HTML Input Date form用法及代碼示例
- HTML Input Datetime form用法及代碼示例
- HTML Input Search form用法及代碼示例
- HTML Input Text form用法及代碼示例
- HTML Input Reset form用法及代碼示例
- HTML Input Radio form用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Color form Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。