Angularjs学习笔记之一

来源:互联网 发布:流量精灵软件 编辑:程序博客网 时间:2024/06/06 23:59
<!DOCTYPE html>
<html lang="en" ng-app>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<scriptsrc="http://code.angularjs.org/angular-1.0.1.min.js"type="text/javascript"></script>
</head>
<body>
Your name: <inputtype="text"ng-model="yourname"placeholder="World">
<hr>
Hellp {{yourname || 'World'}}!
</body>
</html>


//当加载该页时,标记ng-app告诉AngularJS处理整个HTML页并引导应用:
原创粉丝点击