码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-06-07 19:06:51      阅读:200      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!