重要:js onclick() 函数中,取不到this !!!

错误的写法:

function test(){
$(this).parent().addClass('active')
}

正确的写法是:函数定义时带参数,调用时传入this

function test(param){
$(param).parent().addClass('active')
}

<button onclick="test(this)">

 

posted on 2018-12-09 00:27  蛋尼  阅读(99)  评论(0编辑  收藏  举报