<!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 ng-app="myApp">
<runoob-directive></runoob-directive>
</body>
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
<script>
var app = angular.module("myApp",[]);
app.directive("runoobDirective",function(){
return {template:"<h1>自定义指令</h1>"}
});
</script>
</html>
本文转自 素颜猪 51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1895260