创建自定义的指令

<!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
上一篇:SpringBoot 整合 oauth2(五)实现 jwt 及 扩展


下一篇:Spring MVC interceptor拦截指定后缀请求