<!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">
<div class="runoob-directive"></div>
</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 {
restrict:"C",
template:"<h1>自定义指令!!</h1>"
}
});
</script>
</html>
时间: 2024-10-12 18:35:23