首页 > 其他 > 详细

bootstrap 的modal中popover操作时,弹窗中的输入框,按钮不能聚焦

时间:2016-06-07 19:05:37      阅读:229      评论:0      收藏:0      [点我收藏+]

本地894行

  Modal.prototype.enforceFocus = function () {
    $(document)
      .off(‘focusin.bs.modal‘) // guard against infinite focus loop
      .on(‘focusin.bs.modal‘, $.proxy(function (e) {
          if ($(e.target).parents(‘.popover‘).length > 0) return;//mod by xss modal上popover的时候popover中的内容不能聚焦
          if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
              this.$element.focus()
          }
      }, this))
  }

 

bootstrap 的modal中popover操作时,弹窗中的输入框,按钮不能聚焦

原文:http://www.cnblogs.com/qmgcs/p/5567855.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!