日期:2014-05-16  浏览次数:20369 次

doumentElementById(id)有的值能取到,有的取不到
但都能取到对象,就是取的值有些是空的

------解决方案--------------------
探讨
关键是我输入完密码后,在用js调用这个密码时他就是个空值啊,通过ajax传过去他不是还是空的吗

------解决方案--------------------
你拷贝粘贴下面的代码测试

<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>验&nbsp;证&nbsp;码</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>