Bootstrap datepicker在Bootstrap popover中不起作用

时间:2017-07-19 05:05:57

标签: javascript jquery html twitter-bootstrap datepicker

我有一个Bootstrap Popover,在里面我想要一个内联的日期选择器。但是,会创建datepicker,但不会触发任何datepicker事件。

我也参考了Link 1Link 2Link 3,但它们都不适用于我。

HTML代码

<div class="container" style="text-align:center;">
  <a href="#" data-toggle="popover" data-placement="bottom" id="lnkLaunchDate">
    <i class="glyphicon glyphicon-filter" style="color: #000 !important;"></i>
  </a>
</div>

<div id="popover-launchDate" class="hide">
  <div>
    <div id="launchDate" class="grid-filter-datepicker" style="font-size:9px !important"></div>
  </div>
</div>

脚本

 $('[data-toggle="popover"]').popover({  
    html: true,
    title: function () {
        return "";
    },
    content: function () {
        return $("#popover-launchDate").html();
    },
    callback: function () { 
        $('#launchDate').datepicker();
    }

  }).on('shown.bs.popover', function() {
         $('#launchDate').datepicker();
     });

 $('#launchDate').datepicker();

这是我的demo

我错过了什么吗?任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

这是一个使用Bootstrap的简单jqueryUI日历实现 HTML

//POPOVER callback
	var tmp = $.fn.popover.Constructor.prototype.show;
	$.fn.popover.Constructor.prototype.show = function () {
	    tmp.call(this);
	    if (this.options.callback) {
	        this.options.callback();
	    }
	}
	$('.popover-calendar').popover({
	    html: true,
	    placement: 'bottom',
	    fixclass: 'calendar',
	    content: function () {
	        return $($(this).data('contentwrapper')).html();
	    },
	    callback: function () {
	        $("#datepicker").datepicker({

	        });
	    }
	}).on("click", function () {
	    $(this).next().addClass('calendar-open');
	});


	$('body').on('click', function (e) {
	    $('.popover-calendar').each(function () {
	        $('.popover-calendar').datepicker();
            $('.popover-calendar').mousedown(function() {
                $(this).datepicker('hide');    
            });
	    });

	});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" rel="stylesheet"/>
<div class="box">
    <button class="btn-filter popover-calendar" data-contentwrapper=".pop-calendar"><span><i class="ico ico-calendar"></i>Today</span>
    </button>
    <div class="pop-content pop-calendar">
        <div id="datepicker"></div>
    </div>
</div>

您可以根据您的设计设置样式

答案 1 :(得分:0)

更改脚本代码

$('[data-toggle="popover"]').popover({

        html: true,
        title: function () {
            return "";
        },
        content: function () {
            return $("#popover-launchDate").removeClass('hide');
        },
        callback: function () { 
            $('#launchDate').datepicker();
        }

 })


$('#launchDate').datepicker();