AngularJS:无法读取未定义的属性“ parentNode”

时间:2018-08-22 18:54:03

标签: javascript angularjs ng-animate

在此处使用AngularJs

我正在为日历使用以下日期选择器弹出窗口:

    <input type="text" class="form-control" datepicker-popup="{{format}}" ng-model="dt1" is-open="opened1" datepicker-options="dateOptions" ng-required="true" close-text="Close" />

控制器:

  $scope.open1 = function($event) {
     $scope.opened1 = true;
  };

这是我的JsFiddle:https://codepen.io/anon/pen/wEaoLG

我在控制台中收到此错误:

 TypeError: Cannot read property 'parentNode' of undefined

在网上阅读时,我相信这与ngAnimate有关,因为它存在一些问题,但这些问题已在后来的angular js版本中解决,但在1.3版本中未解决。

我找不到任何解决方法。另外,我无法删除nganimate,因为它已在我的应用程序的其他位置使用过。

有什么解决办法吗?

或者如果有人知道与Angular 1.3兼容的任何其他日期选择器

0 个答案:

没有答案