jquery bind和on的区别
发布网友
发布时间:2022-05-15 13:48
我来回答
共3个回答
热心网友
时间:2022-05-15 15:18
bind():为每个匹配元素的特定事件绑定事件处理函数。
bind(type,[data],fn)
type: 含有一个或多个事件类型的字符串,由空格分隔多个事件。
比如"click"或"submit",还可以是自定义事件名。
data:作为event.data属性值传递给事件对象的额外数据对象
fn:绑定到每个匹配元素的事件上面的处理函数!
热心网友
时间:2022-05-15 16:36
on是bind的升级版
就跟win7根xp的区别一样
热心网友
时间:2022-05-15 18:10
bind在高版本中已经不支持的。