<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="/js/angular.js1.4.6/angular.min.js"></script>
</head>
<body>
<div ng-app="myApp" w3xue-directive></div>
<script>
var app = angular.module("myApp", []);
app.directive("w3xueDirective", function() {
return {
template : "我在指令构造器中创建!"
};
});
</script>
</body>
</html>