<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="/js/angular.js1.4.6/angular.min.js"></script>
</head>
<body ng-app="myApp">
<div w3xue-directive></div>
<script>
var app = angular.module("myApp", []);
app.directive("w3xueDirective", function() {
return {
template : "<h1>自定义指令!</h1>"
};
});
</script>
</body>
</html>