JQuery没有使用AngularJS的$ routeProvider处理部分HTML

时间:2014-02-26 09:56:58

标签: jquery angularjs-routing bootstrap-datepicker

我正在使用http://www.eyecon.ro/bootstrap-datepicker中的bootst-datepicker.js来查找$ routeProvider处理的部分元素中包含的日期字段。

在使用$ routeProvider之前,datepicker小部件工作正常。


app.js

angular.module('Main',
      ['ngRoute']).config(function($routeProvider, $locationProvider){

          $locationProvider.hashPrefix('!');
          $routeProvider.when('/admin',{
              templateUrl: "jsp/admin.tpl.html",
          }).when('/contacts',{
              templateUrl: "jsp/contacts.tpl.html",
          }).otherwise({
              templateUrl: "jsp/main.tpl.html",
          });
      });

myDate.js

$(function(){
    $(".input-group.date").datepicker({ autoclose: true, todayHighlight: true });
   });

main.html中 这包含加载所有必要的javascripts的所有元素。

当用户点击应该出现日期选择器的日期字段时,似乎没有调用JQuery。

0 个答案:

没有答案