欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM value 屬性

定義和用法

value 屬性可設(shè)置或返回隱藏輸入域的 value 屬性的值。

value 屬性定義了該隱藏域的默認(rèn)值。

語法

hiddenObject.value

實(shí)例

下面的例子可取得該隱藏域的值:

<html>
<head>
<script type="text/javascript">
function alertValue()
  {
  alert(document.getElementById("hidden1").value)
  }
</script>
</head>
<body>

<form>
<input type="hidden" id="hidden1" value="w3school" />
<input type="button" id="button1" onclick="alertValue()" 
value="Show value of the hidden field" />
</form>

</body>
</html>