与角度表达式一起使用时添加到日历奇怪的行为

时间:2015-11-28 07:25:50

标签: javascript angularjs

http://jsfiddle.net/2ELLB/270/

我正在尝试使用angularjs添加日历。我有一个奇怪的问题,值是从控制器绑定到html页面,但当我检查链接而不是绑定值链接将作为

$scope.date = 2014-05-04 12:00:00;
  

%7B%7Bdate%7D%7D

1 个答案:

答案 0 :(得分:0)

这是不正确的

Calculator calculator = new Calculator();
currency.add(0, calculator.setValueShow("Select Currencies"));

可能是这样的

$scope.date = 2014-05-04 12:00:00;

在您的代码中,您没有包含ng-app和ng-controller

$scope.date = "2014-05-04 12:00:00";

应该是这样的

<span class="addtocalendar atc-style-blue">

工作代码here

希望这有帮助!