var $ele = $('#container');
$ele.on('click', function (e){
var $t = $(e.target);
if($t.is('.file')){
openDoc($t);
}
if($t.is('.nav a')){
changeViewTo($t.attr('index'));
}
})
function openDoc(){
$ele......
}
function changeViewTo(){
$ele......
}
上面這段程式碼如何分佈在directive
或controller
或service
? openDoc
和changeViewTo
都操作$ele
及其子元素
要求:
1.需要對外暴露openDoc
和changeViewTo
方法。