jquery – Popover中的Datepicker将不会显示

前端之家收集整理的这篇文章主要介绍了jquery – Popover中的Datepicker将不会显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用 Twitter BootstrapBootstrap-datepicker扩展名.我无法在 popover内部显示日期选择器.
<a href="#" id="add-event-button" class="btn btn-small">Add an Event</a>
$(document).ready(function () {

    $("#add-event-button").popover({
        title: "Add an Event",placement: 'bottom',content: '<input class="datepicker" type="text" />',html: true
    }).click(function (e) {
        e.preventDefault();
    });
});

弹出窗口显示正常,< input class =“datepicker”type =“text”/>在popover上下文之外显示datepicker罚款.有任何想法吗?

解决方法

尝试使用回调扩展popover函数,因为datepicker无法在加载时添加到非现有元素,请尝试:
var tmp = $.fn.popover.Constructor.prototype.show;
$.fn.popover.Constructor.prototype.show = function () {
  tmp.call(this);
  if (this.options.callback) {
    this.options.callback();
  }
}

$("#add-event-button").popover({ 
  title: "Add an Event",html: true,callback: function() { 
    $('.datepicker').datepicker(); 
  }
}).click(function (e) {
  e.preventDefault();
});

编辑:回调扩展解决方案从这里:Callback function after tooltip / popover is created with twitter bootstrap?

原文链接:https://www.f2er.com/jquery/176911.html

猜你在找的jQuery相关文章