在 jQuery 中,可以使用 .on()
方法來綁定多個(gè)事件。語法如下:
$(selector).on(event1, event2, event3, function(){
// 事件處理函數(shù)
});
示例:綁定點(diǎn)擊事件和鼠標(biāo)移入事件
$(document).on("click mouseenter", "button", function(){
// 事件處理函數(shù)
});
以上示例中,給文檔中的所有按鈕綁定了點(diǎn)擊事件和鼠標(biāo)移入事件。當(dāng)按鈕被點(diǎn)擊或鼠標(biāo)移入時(shí),事件處理函數(shù)將被觸發(fā)。