AngularJS 细节

Posted iZKang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AngularJS 细节相关的知识,希望对你有一定的参考价值。

AngularJS 表达式({{ expression }})类似于 AngularJS ng-bind
例子:

<span>表达式</span>
<div ng-app="" ng-init="quantity=1;cost=5">
 
<p>总价: {{ quantity * cost }}</p>
 
</div>
<span>ng-bind:</span>
<div ng-app="" ng-init="quantity=1;cost=5">
 
<p>总价: <span ng-bind="quantity * cost"></span></p>
 
</div>

 


以上是关于AngularJS 细节的主要内容,如果未能解决你的问题,请参考以下文章