能具体说一下你的需求吗?
创建自定义指令的方法:
var appauto=angular.module('appauto',[]);
appauto.directive('appAuto',function(){
return {
// restrict限制使用:
// A属性E元素C类名M注释,默认EA
restrict:'AEMC',
template:'自定义指令创建
'
};
});
angular.bootstrap(document.getElementById('appauto'),['appauto']);