plunker:http://plnkr.co/edit/wURNg8ByPYbEuQSL4xwg
example.js:
angular.module('plunker', ['ui.bootstrap']);
  var ModalDemoCtrl = function ($scope, $modal) {
  $scope.open = function () {
    var modalInstance = $modal.open({
      templateUrl: 'modal.html',
      controller: 'ModalInstanceCtrl'
    });
  };
};
var ModalInstanceCtrl = function ($scope, $modalInstance) {
  $scope.ok = function () {
    alert($scope.text);
  };
  $scope.cancel = function () {
    $modalInstance.dismiss('cancel');
  };
};
index.html的:
<!doctype html>
<html ng-app="plunker">
  <head>
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.js"></script>
    <script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.6.0.js"></script>
    <script src="example.js"></script>
    <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
  </head>
  <body>
  <div ng-controller="ModalDemoCtrl">
    <button class="btn" ng-click="open()">Open me!</button>
    <div ng-show="selected">Selection from a modal: {{ …我想在页面上有几个日期选择器.但是使用UI-Bootstrap的默认解决方案是不可能的,不能打开任何一个日期选择器.相互冲突.这是我的代码:
<div>
            <div class="form-horizontal pull-left">
                <input type="text" datepicker-popup="dd-MMMM-yyyy" ng-model="dt" is-open="opened" min="minDate" max="'2015-06-22'" datepicker-options="dateOptions" date-disabled="disabled(date, mode)" ng-required="true"/>
                <button class="btn" ng-click="open()"><span class="glyphicon glyphicon-calendar"></span></button>
            </div>
            <div class="form-horizontal pull-left">
                <input type="text" datepicker-popup="dd-MMMM-yyyy" ng-model="dt" is-open="opened" min="minDate" max="'2015-06-22'" datepicker-options="dateOptions" date-disabled="disabled(date, mode)" ng-required="true" />
                <button class="btn" ng-click="open()"><span class="glyphicon glyphicon-calendar"></span></button>
            </div>
            <button type="submit" class="btn btn-default">Submit</button>
        </div>
我刚刚从网站http://angular-ui.github.io/bootstrap/#/datepicker上复制/粘贴了datepicker代码.他们互相冲突.当我单击<input>字段打开日期选择器时,没有人可以正常打开,两者都打开一秒钟并立即消失.
我怎么能在一个页面上有几个日期选择器?
我正在使用Bootstrap UI datepicker指令,我正在尝试使用datepicker按钮打开日期选择器弹出窗口,就像在原始示例中一样,但它在模态窗口中不起作用.
我究竟做错了什么?