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
相關用法
- HTML DOM name用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML DOM specified用法及代碼示例
- HTML Map name用法及代碼示例
- HTML li value用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML DOM URL用法及代碼示例
- HTML Bdo dir用法及代碼示例
- HTML DOM accessKey用法及代碼示例
- HTML Textarea name用法及代碼示例
- HTML DOM attributes用法及代碼示例
- HTML Button name用法及代碼示例
- HTML IFrame name用法及代碼示例
- HTML Button value用法及代碼示例
- HTML DOM offsetLeft用法及代碼示例
注:本文由純淨天空篩選整理自AshwinGoel大神的英文原創作品 HTML | DOM value Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。