jquery焦点回到相同的输入字段,错误不适用于所有浏览器

时间:2014-11-21 22:55:24

标签: javascript jquery google-chrome internet-explorer firefox

我有一个包含多个字段的表单,其中包含动态创建的字段和一些预定义的字段。其中一个字段使用jquery timepicker插件,由http://jonthornton.github.io/jquery-timepicker/

提供

现在我的问题是我正在对该字段进行快速实时验证,因为它在焦点上模糊不清,如果验证失败,则显示错误并将焦点恢复到该字段。现在我的代码在chrome上工作,但在IE 11和Firefox上,(inputfiled).focus()没有被触发,因此焦点不会被带回现场。

这是我的代码小提琴http://jsfiddle.net/8cL42bcy/6/

以下是相同的代码段...



$(document).ready(function() {
  // this is used just to highlight where the current focus is on...
  $("input").focus(function() {
    $(this).css('background-color', 'rgba(240, 116, 116, 0.69)');
  });

  $("input").blur(function() {
    $(this).css('background-color', '#fff');
  });

  // timepicker plugin courtesy of--  http://jonthornton.github.io/jquery-timepicker/
  $('#presentationTime').timepicker({
    'scrollDefault': '08:30 AM',
    'disableTimeRanges': [
      ['8:01pm', '11:59pm'],
      ['12am', '7:59am']
    ],
    'timeFormat': 'h:i A',
    'selectOnBlur': true
  }).on('timeFormatError', function() {
    if ($('#presentationTime').val() != null || $('#presentationTime').val() != "") {
      $("#errormsg").css("display", "inline").fadeOut(4000);
    }
    $('#presentationTime').val("");
    $('#presentationTime').focus();
  }).on('timeRangeError', function() {
    if ($('#presentationTime').val() != null || $('#presentationTime').val() != "") {
      $("#errormsg").css("display", "inline").fadeOut(4000);
    }
    $('#presentationTime').val("");
    $('#presentationTime').focus();
  });
  // end timepicker function

  $("#field").blur(function() {
    if ($('#field').val() != "12345") {
      $("#field").css('outline', 'green dotted thick');
      $('#field').val("");
      $('#field').focus();
    }
  });


});

        #errormsg {
          display: none;
          margin-left: 15px;
          color: red;
        }
        .ui-timepicker-list li.ui-timepicker-disabled {
          /*display: none;*/
          font-weight: normal;
          font-size: 12px;
        }

<link href="http://www.courts.mo.gov/civiceducation/html5bp/html5-boilerplate-4.3.0/css/jquery-ui.css" rel="stylesheet" />
<link href="http://www.courts.mo.gov/civiceducation/html5bp/html5-boilerplate-4.3.0/css/jquery.timepicker.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="http://www.courts.mo.gov/civiceducation/html5bp/html5-boilerplate-4.3.0/js/vendor/jquery.timepicker.min.js"></script>


Field 1::
<input type="text" name="textfield" size="25" value="" autofocus>Field 2::
<input type="text" name="textfield" size="25" value="">
<br>
<br>
<br>time slot::
<input type="text" id="presentationTime" name="presentationTime" size="10" value="" placeholder="HH:mm A"><span id="errormsg">Valid Time required!</span>

<br>
<br>
<br>Filed 4::
<input id="field" type="text" name="textfield" size="25" value="">Field 5::
<input type="text" name="textfield" size="25" value="">
<br>
&#13;
&#13;
&#13;

现在在Chrome中,行为如下......

选项卡直到字段时间段并输入乱码并标签或焦点,它会显示一条消息,焦点将重新回到时间段字段。与field4输入字段相同。如果输入不是&#34; 12345&#34;然后它绘制轮廓并将焦点带回field4输入字段。

在FF和IE中,行为是在无效输入时,焦点返回到相同的输入字段,它将转到下一个字段。

我哪里错了?

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

这是Firefox和IE中的实现错误,您可以使用计时器解决它。 这是新的小提琴:http://jsfiddle.net/8cL42bcy/8/

我最后添加了setTimeout(function() { $('#field').focus(); }, 50);

它不会以任何方式影响Chrome,因为已经有了重点。