如果结果错误,我想将焦点放在文本框本身的更改事件上。假设我的文本框 id 是“txtCaseCode”。
$('#txtCaseCode').change(function() {
if(condition does not satsfy)
{
alert('Wrong ID');
$('#txtCaseCode').focus();
}
}
位它不起作用。我将如何实现这一目标?
这是附加模糊事件后的代码:
$('#txtCaseCode').change(function() {
if(condition does not satsfy)
{
alert('Wrong ID');
$('#txtCaseCode').blur(function(){
$('#txtCaseCode').focus();//this is not working
$('#txtCaseCode').val('Please click here.');//this is not working
});
}
else
{
execute code;
}
}