<?php echo $this->Html->script('balaashjquery'); ?>
<script type="text/javascript">
jQuery(function(){
$('#iso').blur(function(){
$isoval = $('#iso').val();
if($isoval ==""){
alert('iso field should not be empty');
}
$('#iso').focus();
});
我在所有字段中使用了类似的jquery类型。 现在,当我将任何字段留空时,它显示验证消息但在填写后我无法通过使用标签按钮或鼠标指针移动到下一个字段
答案 0 :(得分:1)
将.focus()
移到if语句中:
$(function(){
$('#iso').blur(function(){
if($(this).val() ==""){
alert('iso field should not be empty');
$(this).focus();
}
});