Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道什么时候
$("#submit").on("click", function(){
出来。意味着什么版本的 Jquery 开始使用 .on()
从 jQuery 1.7 开始,.on() 方法提供了附加事件处理程序所需的所有功能。有关从旧 jQuery 事件方法转换的帮助,请参阅 .bind()、.delegate() 和 .live()。
从文档中:
.on( events [, selector] [, data], handler(eventObject) ) 添加的版本:1.7
.on( events [, selector] [, data], handler(eventObject) )