没有出现四个hello
html:
<body>
<hello></hello>
<div hello></div>
<div class="hello"></div>
<!-- directive:hello -->
<div></div>
</body>
js:
var myModule=angular.module('MyModule',[]);
myModule.directive("hello",function(){
return {
restrict:"E",
template:"<div>Hi hahha</div>",
replace:true
}
});
为什么呢?