<?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。现在,当我将任何字段留空时,它会显示一条验证消息,但在填充后我无法使用选项卡按钮或鼠标指针移动到下一个字段