对于angular js还有其强大之处,可以利用angular js的指令来自定义许多标签。下面是一个实例:
自定一个名为hello标签,视图如下:
<div ng-app="myApp">
<hello></hello>
</div>
编写控制器代码:
<script src="http://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
<script>
var myApp = angular.module("myApp", []);
myApp.directive("hello", function(){
return{
restrict:'E',
template:'<p>hello,你好!!</p>',
replace: true
}
});
</script>
这样网页运行输出:
hello,你好!!