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

4

1 回答 1

1

.focus()to 移到 if 语句中:

$(function(){
     $('#iso').blur(function(){
      if($(this).val() ==""){
       alert('iso field should not be empty');
       $(this).focus();
      }
    });
于 2013-09-11T11:37:17.797 回答