angular.js创建自定义指令-demo3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular.js创建自定义指令-demo3相关的知识,希望对你有一定的参考价值。
html:
<!doctype html>
<html ng-app="myModule">
<head>
<meta charset="utf-8">
</head>
<body>
<hello></hello>
</body>
<script src="js/angular-1.3.0.js"></script>
<script src="HelloAngular_Directive.js"></script>
</html>
js:
var myModule = angular.module("myModule",[]);
myModule.directive("hello",function(){
return {
restrict:‘E‘,//E代表标签
template:‘<div>Hillo----angular自定义标齐</div>‘,
replace:true
}
});
以上是关于angular.js创建自定义指令-demo3的主要内容,如果未能解决你的问题,请参考以下文章