AngularJS 绑定指令 ng-bind

前端之家收集整理的这篇文章主要介绍了AngularJS 绑定指令 ng-bind前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div ng-app="" ng-init="firstName='John'">
 
<p>姓名为 <span ng-bind="firstName"></span></p>
 
</div>

ng-bind 指令把应用程序变量 name 绑定到某个段落的 innerHTML。 原文链接:https://www.f2er.com/angularjs/147510.html

猜你在找的Angularjs相关文章