angular.js - angularjs在使用compile的postLink中如何綁定事件?
高洛峰
高洛峰 2017-05-15 17:04:54
0
1
561

自訂指令compile在使用時,要如何在postLink中綁定事件呢?

compile:function(tElement,tAttrs,transclude){
    return {
         post:function postLink(scope,iEle,iAttrs,controller){
            iEle.on('click',function(){
                alert(1);
            }  
          }            
    }

在運作時,彈出: iEle.on is not a function,這個錯誤是什麼原因造成的呢?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回覆(1)
大家讲道理

你寫錯了,註冊click事件時少個括號

compile:function(tElement,tAttrs,transclude){
    return {
         post:function postLink(scope,iEle,iAttrs,controller){
            iEle.on('click',function(){
                alert(1);
            });  // 这里少个小括号
          }            
    }

https://jsfiddle.net/hjzheng/...

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板