老師好, 這段段代碼id不會輸出, 能問下爲什麽嗎?
来源:3-2 静态页思路验证-组件切换
Vali_Lucifer3477978
2017-10-23
$('.page').on('onLeave', ()=>{
console.log( $(this).attr('id'), '==>', 'onLeave')
});
写回答
1回答
-
Lyn
2017-11-23
$('.page').on('onLeave', ()=>{
console.log( $(this).attr('id'), '==>', 'onLeave')
});
用 ()=>{} 这种语法, this 是当前运行的环境,不再是动态指向当前调用的对象。你可以 console.log(this) 看看是什么
00
相似问题