HTML DOM defaultValue ÊôÐÔ

¶¨ÒåºÍÓ÷¨

defaultValue ÊôÐÔ¿ÉÉèÖûò·µ»ØÃÜÂëÓòµÄĬÈÏÖµ¡£

×¢ÊÍ£º¸ÃĬÈÏÖµÊÇÔÚ HTML "value" ÊôÐÔÖй涨µÄĬÈÏÖµ¡£

Óï·¨

passwordObject.defaultValue=somevalue

ʵÀý

ÏÂÃæµÄÀý×Ó¿É»ñµÃÃÜÂëÓòµÄĬÈÏÖµ£º

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

<form>
<input type="password" id="password1" value="thgrt456" />
<input type="button" id="button1" onclick="alertValue()" 
value="Show default value" />
</form>

</body>
</html>
VUE