在进行一些健全性测试时,我注意到以下change
事件绑定有效:
$("body").on("change","input", function(){console.log(1)})
虽然on
事件绑定不:
$("body").on("change","select", function(){console.log(1)})
这种不一致是否有任何解决方法或解释?
在进行一些健全性测试时,我注意到以下change
事件绑定有效:
$("body").on("change","input", function(){console.log(1)})
虽然on
事件绑定不:
$("body").on("change","select", function(){console.log(1)})
这种不一致是否有任何解决方法或解释?