ES6 針對JQuery $(this) 解決方案 // ES6 在jquery $this 需用原生JS event.currentTarget 來指回自己 $('#login-buttom').click((e) => { console.log("dd"); const $this = $(e.currentTarget).data('one'); console.log($this); })