美文网首页
AngularJS ng-bind&ng-init指令

AngularJS ng-bind&ng-init指令

作者: 报告老师 | 来源:发表于2017-10-23 14:34 被阅读19次

    ng-bind用于绑定数据到innerHTML。

    ng-init用于初始化数据,说得直白一点就是开始时赋值。

    注意:ng-init="hello=’hello world‘“整个变量需要用引号引住,而且值也需要,所以需要用到两层引号。

    用例:

    <div ng-app="myApp" ng-init="hello='hello world!'"><!--定义一个程序,并添加一个名hello的值,将hello world! 初始化到hello-->

           <div ng-bind="hello"></div><!--用ng-bind将hello绑定到div的innerHTML中-->

    </div>

    相关文章

      网友评论

          本文标题:AngularJS ng-bind&ng-init指令

          本文链接:https://www.haomeiwen.com/subject/mphauxtx.html