Rumah > Soal Jawab > teks badan
Apabila menggunakan kompilasi arahan tersuai, bagaimana untuk mengikat acara dalam postLink?
compile:function(tElement,tAttrs,transclude){
return {
post:function postLink(scope,iEle,iAttrs,controller){
iEle.on('click',function(){
alert(1);
}
}
}
Apabila berlari, perkara berikut muncul: iEle.on is not a function
, apakah punca ralat ini?
大家讲道理2017-05-15 17:06:54
Anda salah tulis, terdapat kurungan yang hilang semasa mendaftar acara klik
compile:function(tElement,tAttrs,transclude){
return {
post:function postLink(scope,iEle,iAttrs,controller){
iEle.on('click',function(){
alert(1);
}); // 这里少个小括号
}
}
https://jsfiddle.net/hjzheng/...