一、Directive的定义及其使用方法 AngularJs的指令定义大致如下
angular.module(
"app"
,[]).directive(
"directiveName"
,
function
(){
return
{
//通过设置项来定义
};
})