日期:2014-05-18 浏览次数:20664 次
//验证密码不能为空 function checkP(){ var pwd = document.getElementById('Input').value; if(pwd.length==0){ document.getElementById('pwd').innerHTML="<span class='red'> * 原密码不能为空!</span>"; return false; } return true; } //密码框 <input type="password" name="pwd" class="input" id="Input" onBlur="check()"> <span class="green" id="pwd">* 原密码不能为空!</span> </td>
------解决方案--------------------
function checkP(){
这里手误啊,这里是check() 希望可以帮到楼主哦!呵呵!
------解决方案--------------------
<input>可以 <div>可以 <font>可以 <span>可以 ...还有很多,
重要的是你js掌握的怎样