我使用jquery提交表单。请告诉我如何在有人在文本框中输入内容后隐藏包含错误消息的div
$('#resourcename').onchange(function() {
$('.resouecetitle').hide();
}
<div class="resouecetitle" style="padding-top:5px; padding-bottom :5px; color:#F00; font-size:11px;">Enter the name of the Resource</div>
答案 0 :(得分:0)
您可以使用.on()方法实现您想要的代码:
$('#resourcename').on('keyup',function() { //<-- textbox id name
$('.resouecetitle').hide(); //<-- error message container
});
答案 1 :(得分:0)
您可以随意对代码进行一些改动吗。
HTML :
//here i put one demo textbox with id.which will be change with your textbox.
<input type="text" id="resourcename" name="test">
<div class="resouecetitle" style="padding-top:5px; padding-bottom :5px; color:#F00; font-size:11px;">Enter the name of the Resource</div>
Jquery :
$('#resourcename').on('keypress',function(e) {
$('.resouecetitle').hide();
});
我希望这会对你有所帮助。