Monday, June 13, 2016

AngularJS học công nghệ mới

AngularJs by Google
AngularJs by Google
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="">

<p>Input something in the input box:</p>
<p>Name : <input type="text" ng-model="name" placeholder="Enter name here"></p>
<h1>Hello {{name}}</h1>

</div>

</body>
</html>

Source w3schools

ng-app: là yếu tố gốc được định nghĩa của AngularJS. Khi yêu cầu load 1 trang web thì ng-app sẽ tự động khởi tạo, điều này được quy định của AngualarJS.

ng-model: để hiển thị input , select , textarea, nó được lấy ra từ khi gọi NgModelController.


EmoticonEmoticon