案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function alertValue()
5
  {
6
  alert(document.getElementById("password1").value)
7
  }
8
</script>
9
</head>
10
<body>
11
12
<form>
13
<input type="password" id="password1" value="thgrt456" />
14
<input type="button" id="button1" onclick="alertValue()" value="Show default value" />
15
</form>
16
17
</body>
18
</html>
19