Angular学习(2)- ng-app
此例子看alert弹出时的效果。当然,最重要的是ng-app="MyApp",这一个是怎么加载的。
<!DOCTYPE html> <html ng-app="MyApp"> <head> <title>Study 2</title> <script type="text/javascript" src="js/angular.js"></script> </head> <body> <div> 1 + 1 = {{1 + 1}} </div> <script type="text/javascript"> var app = angular.module("MyApp", [], function() { //console.log("Test"); alert("test"); }); </script> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。