ng-click获取事件详解编程语言

在jquery 里面,可以
$(“#test”).on(“click”,function(e){
e.target//e.target能捕捉到当前点击的元素
})

在angularjs中,我们如果在元素上面绑定ng-click=”test()”
希望<div ng-click=”test()”></div>

点击这个div以后能够捕获到这个div节点,然后操作他们的兄弟元素,父元素等
模仿jQuery
$scope.test=function(e){
e.target//这里是捕获不到的
}
需要修改为ang
<div ng-click=”test($event)”></div>
传入一个$event,然后
$scope.test=function(e){
e.target//这里是能捕获到的
}

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/17588.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论