當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


AngularJS ng-app用法及代碼示例


AngularJS中的ng-app指令用於定義AngularJS應用程序的根元素。該指令在頁麵加載時自動初始化AngularJS應用程序。它可用於加載AngularJS應用程序中的各種模塊。

用法:

<element ng-app=""> Contents... </element>

範例1:本示例使用ng-app指令定義默認的AngularJS應用程序。


<html> 
      
<head> 
    <title>AngularJS ng-app Directive</title> 
  
    <script src= 
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"> 
    </script> 
</head> 
  
<body style="text-align:center"> 
      
    <h2 style = "color:green">ng-app directive</h2> 
      
    <div ng-app="" ng-init="name='GeeksforGeeks'"> 
        <p>{{ name }} is the portal for geeks.</p> 
    </div> 
</body> 
  
</html>

輸出:
ng-app

範例2:本示例使用ng-app指令定義默認的AngularJS應用程序。

<html> 
      
<head> 
    <title>AngularJS ng-app Directive</title> 
  
    <script src= 
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"> 
    </script> 
</head> 
  
<body ng-app="" style="text-align:center"> 
  
    <h1 style="color:green">GeeksforGeeks</h1> 
    <h2>ng-app Directive</h2> 
      
    <div> 
        <p>Name:<input type="text" ng-model="name"></p> 
        <p>You entered:<span ng-bind="name"></span></p> 
    </div> 
</body> 
  
</html>

輸出:
ngapp



相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 AngularJS | ng-app Directive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。