搜索

首页  >  问答  >  正文

angular.js - angularjs在使用compile的postLink中如何绑定事件?

自定义指令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,这个错误是什么原因造成的呢?

高洛峰高洛峰2744 天前548

全部回复(1)我来回复

  • 大家讲道理

    大家讲道理2017-05-15 17:06:54

    你写错了,注册click事件时少个括号

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

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

    回复
    0
  • 取消回复