AngularJS 指令除了基本了的 app、init、model、repeat我们还可以调用自己定义的指令,调用方式有四种:
E :元素名
A:属性
C:类名
M:注释
- 元素名
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body ng-app="app">
<test></test>
<script>
var app = angular.module("app", []);
app.directive("test", function () {
return {
restrict: "E", //可省略,默认是EA,即元素名和属性
template: "这是自定义的通过元素名调用"
}
})
</script>
</body>
</html>
//这是自定义的通过元素名调用
- 属性
<body ng-app="app">
<div test></div>
<script>
var app = angular.module("app", []);
app.directive("test", function () {
return {
restrict: "A", //可省略,默认是EA,即元素名和属性
template: "这是自定义的通过属性调用"
}
})
</script>
</body>
//这是自定义的通过属性调用
- 类名
<body ng-app="app">
<div class=" test"></div>
<script>
var app = angular.module("app", []);
app.directive("test", function () {
return {
restrict: "C",
template: "这是自定义的通过类名调用"
}
})
</script>
</body>
//这是自定义的通过类名调用
- 注释
<body ng-app="app">
<!-- directive: test -->
<script>
var app = angular.module("app", []);
app.directive("test", function () {
return {
restrict: "M",
replace : true,
template: "<h1>这是自定义的通过注释调用</h1>"
}
})
</script>
</body>
//这是自定义的通过注释调用
PS:一定要在 test 左右留空格;