boostrap toggle="buttons" 阻止A标签的默认行为的问题

发布于 2022-09-04 14:01:43 字数 1367 浏览 14 评论 0

父标签添加data-toggle="buttons" 属性之后,子元素A标签的默认行为会不阻止。一下是DOM结构

<div class="btn-group btn-group-sm" data-toggle="buttons" style="margin-left:3px;">

<a class="btn btn-info active" href="http://localhost:8082/下拉问题修复完成版.rar">   
    <span class="glyphicon glyphicon-download-alt"></span>模板下载    
</a>    
<button class="btn btn-success" data-toggle="modal" data-target="#subjectEdit">    
    <span class="glyphicon glyphicon-th"></span>专题编辑    
<button>    

</div>

点击A标签是不会有任何反应的。这边不清楚boostrap阻止A标签的目的是什么,所以看了一下事件绑定的源码。大概是这样的!


  if (!($(e.target).is('input[type="radio"], input[type="checkbox"]'))) {          
        // Prevent double click on radios, and the double selections (so cancellation) on checkboxes    
    e.preventDefault()    
    
    // The target component still receive the focus    
    if ($btn.is('input,button')) $btn.trigger('focus')    
    else $btn.find('input:visible,button:visible').first().trigger('focus')

  }

// Prevent double click on radios, and the double selections (so cancellation) on checkboxes
我英语水平不咋地,有道加蒙,这句我理解的意思是 阻止在radios和ckeckbox表单双击,避免双击变成取消选中。
好,到这里我就更蒙逼了,既然是阻止双击,为啥这一句“$(e.target).is('input[type="radio"], input[type="checkbox"]')”还要做一下非运算。思前想后就是想不明白。

论坛里有大神指教一下咯

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪也成诗 2022-09-11 14:01:43

这里的双击指的是btn是label标签的时候会点击的时候会多触发一次input的点击事件,这个事件会冒泡再触发一次引起按钮的双击。用e.preventDefault()阻止label标签的默认行为

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文