triggerを調べていてよくわからないことがありました。
以下のような書き方の場合、triggerで呼び出されるイベントはどれになるのでしょうか?
jQuery
1export function test1(a, b) { 2 a.on("click", function(e) { 3 $(this).trigger('btn') 4 } 5} 6 7export function test2() { 8 function test3() { 9 $this.off('btn'); 10 $this.on('btn', function() { 11 console.log("表示1") 12 }); 13 } 14 15 function test4() { 16 $this.off('btn'); 17 $this.on('btn', function() { 18 console.log("表示2") 19 }); 20 } 21 22 function test5() { 23 $this.off('btn'); 24 $this.on('btn', function() { 25 console.log("表示3") 26 }); 27 } 28} 29 30
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/10/14 02:16