歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

jQuery Mobile bind()方法---處理自定義事件

jQuery Mobile提供的自定義事件建立了超出框架原生功能的實用開發鉤子,意味著我們可以攔截某些現有的事件,添加自己的自定義代碼,這些事件包括touch、mouse和window事件。

jQuery Mobile權威指南 PDF+源碼 http://www.linuxidc.com/Linux/2013-09/90318.htm

1: $('div.foo').bind('click',function(e) {
 
// todo
 
});

2: $('div.foo').click(function(e) {
 
//todo
 
});

1和2的差別在於,bind方法可以同時響應多個事件。

$('div.foo').bind('mouseenter mouseleave',function(e) {
 
// todo
 
});

自定義displayMyName事件
 
$('div.foo').bind('displayMyName', function(e, myName) {
 alert("my name is: " + myName);
 });
 
$('div.foo').click(function() {
 $('div.foo').trigger('displayMyName', ['John']);
 });

jQuery Mobile 的詳細介紹:請點這裡
jQuery Mobile 的下載地址:請點這裡

Copyright © Linux教程網 All Rights Reserved