ng-init指令初始化AngularJS應用程式變數並支援html5

技術小牛人發表於2017-11-14

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<meta http-equiv=”X-UA-Compatible” content=”IE=edge”>

<title></title>

<link rel=”stylesheet” href=””>

</head>

<body>

<div data-ng-app=”” data-ng-init=”firstName=`sdiven`”>

<p>姓名為:<span data-ng-bind=”firstName”></span></p>

</div>

</body>

<script src=”http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js”></script>

</html>

本文轉自  素顏豬  51CTO部落格,原文連結:http://blog.51cto.com/suyanzhu/1895213


相關文章