jquery – 一个复选框点击事件被中断以运行代码,但$.trigger(‘click’)只能在Chrome中识别,而不能在Firefox中识别.为什么?

我有一个复杂的方案来中断复选框点击事件,所以我可以在点击事件完成之前运行一些 javascript / jQuery代码(即选中框).

但是,在Chrome(我的基础浏览器)和Firefox(由我的一小部分用户使用)中应用代码时,我注意到了一些不同的行为.

在这个小提琴example中,事件序列在Chrome中运行良好,但如果你在firefox中尝试相同,程序化.trigger(‘click’)不会触发事件监听器.为什么?我用谷歌搜索了它,也许与$.trigger()方法有关?

我的代码

HTML:

<input type="checkBox" id="foo"> Clicky!

<hr>

<textarea id="bar"></textarea>

<hr>

<textarea id="cons"></textarea>

JS(使用jQueryUI对话框)

$("#dialog").dialog({
  autoOpen: false
});

$("#foo").on('mousedown',function(e) {
  e.preventDefault(); // stop mousedown propagation
  $("#foo").prop('checked',false).prop("disabled",true); // disable checkBox from checking

  if (!$("#foo").is(":checked")) { // if not checked,run script

    // Open a modal while checkBox event is paused
    $("#dialog").dialog('open').dialog({
      title: "hey! Here is a modal",modal: 'true',buttons: {
        "OK": function() {
          // run a script while modal running during checkBox pause
          $("#bar").val("checkBox paused,script run");
       
                       // release checkBox disable  &
          // programmatically complete the check
          $("#foo").prop('disabled',false);
          $("#foo")[0].click(); 
          // This click event completes and the click listener fires below in Chrome,but not on firefox? Why oh why?
          $("#dialog").dialog('close');
       
       }
        
      }
    });
  }
});



$("input:checkBox").on("click",function() {
  $("#cons").val("check completed!");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<input type="checkBox" id="foo"> Clicky!

<hr>

<textarea id="bar"></textarea>

<hr>

<textarea id="cons"></textarea>

<div id="dialog">
  A modal opens
</div>

更新:
我将我的代码简化为裸元素,并且我可以证明该行为特定于启动对话框(或警报或任何模态),这会破坏firefox中的后续.trigger(‘click’)方法.
simplified example

解决方法

你真的需要禁用复选框吗?
关闭模式时,将禁用的属性更改为false(在Firefox中)需要一些时间.所以我们需要等到再次启用该复选框.否则触发器会“点击”禁用的复选框,但没有结果.
看一下片段,我在触发器上设置了超时,它可以工作:

$('#bar').on('click',function() {
  $("#foo").prop('disabled',true);
  alert("pause"); // alert,modal,dialog all break trigger event
  $("#foo").prop('disabled',false);
  // wait...
  setTimeout(function() {
    $("#foo").trigger('click')
  },100);
});

$("input:checkBox").on("change",function() {
  $("#baz").val("check completed!");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkBox" id="foo">
<hr>
<button id="bar">Checker</button>
<hr>
<textarea id="baz"></textarea>

但它可以用不同的方式解决.

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...