本文實例講述了jQuery中bind()方法用法。分享給大家供大家參考。具體分析如下:
此方法為符合元素的特定事件綁定事件處理方法。
在語法上bind()方法和one()方法是一樣的,它們的差異在於綁定的處理方法的執行次數。
語法結構一:
$(selector).bind(type,data,function)
參數列表:
参数 |
描述 |
type |
定义绑定到匹配元素中的事件类型。
如果有多个事件使用空格分隔。 |
data |
可选。传递给事件对象的额外数据对象。 |
function |
定义当事件发生时运行的方法。 |
實例碼:
語法結構二:
$(selector).bind({type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function, type:function , ...})
參數列表:
参数 |
描述 |
{type:function, type:function, ...} |
定义绑定到匹配元素的事件和事件处理方法。
type与function参数描述如上表。 |
實例碼:
bind()函數-腳本之家
身體>
希望本文對大家介紹的 jQuery 程式設計有所幫助。
本文轉自:螞蟻部落http://www.softwhy.com/