求解: jQuery在文本框中输入的信息如果是错误的时候,则出现后面红色的文字,知道的朋友请回复一下,谢谢
2016-09-13
展开全部
<input id="username" ><span style="color:red;display:hidden">用户名由..</span>
<br/>
<input id="password"><span style="color:red;display:hidden">密码由...</span>
<script>
$(function(){
$("#username").blur(function(){
var username = $(this).val();//用户名
if(用户名错误){
$(this).next().show();
}else{
$(this).next().hide();
}
});
$("#password").blur(function(){
var pwd= $(this).val();//密码
if(密码错误){
$(this).next().show();
}else{
$(this).next().hide();
}
});
});
</scrpit>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询