doumentElementById(id)有的值能取到,有的取不到
但都能取到对象,就是取的值有些是空的
------解决方案--------------------
------解决方案--------------------
你拷贝粘贴下面的代码测试
<body>
<div width=1000px;>
<table border=0>
<tr><td>注册名称</td><td><input type="text" id="lgname" name="lgname"></input></td></tr>
<tr><td>注册密码</td><td><input type="password" id="____loginpwd" name="loginpwd"></input></td></tr>
<tr><td>验 证 码</td><td><input type="text" id="lgchk" name='lgchk'></input></td><td><img id="chkid" src="" width="55" height="18"></img></td><td><a id="changea" href="#">看不清</a></td></tr>
<tr><td><input type="hidden" name="chknm" id="chknm" value=""></input></td></tr>
<tr><td><input type="button" id="lgbtn" value="登录"></input></td><td><input type="button" id="reg" value="用户注册"></input></td><td><input type="button" id="found" value="找回密码"></input></td></tr>
</table>
</table>
</div>
<input type="button" value="得到输入的密码 " onclick="alert(document.getElementById('____loginpwd').value)" />
</body>