2013-05-29 178 views
0

嗨,我正在與JQM混合應用程序。 我想在按下或點按(按住)按鈕時添加課程。jquery mobile。添加類時,點擊按鈕

這裏是我的代碼...

<a href='btnWhite on'>button</a> 

CSS

.btnWhite { background:gray } 
.btnWhite.on { background:black } 

jQuery Mobile的

$('.btnWhite').bind('touchstart', function() { 
$(this).addClass("on"); 
}); 

$('.btnWhite').bind('touchend', function() { 
$(this).removeClass("on"); 
}); 
+0

你到底是尋求幫助的是什麼? – Jasper

回答

2

工作例如:http://jsfiddle.net/Gajotres/LvhdG/

在這個例子中,我已經使用vmousedownvmouseupvmousecancel事件,這樣我就可以測試它在桌面/移動設備的一致好評。只是touchstart取代他們,touchend,如果你想touchcancel,但它也將與VMOUSE事件工作。

HTML:

<!DOCTYPE html> 
<html> 
    <head> 
     <title>jQM Complex Demo</title> 
     <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/> 
     <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/> 
     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /> 
     <!--<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>--> 
     <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>  
    </head> 
    <body> 
     <div data-role="page" id="index"> 
      <div data-theme="b" data-role="header"> 
       <h1>Index page</h1> 
      </div> 

      <div data-role="content"> 
       <a data-role="button" class="btnWhite">button</a> 
      </div> 
     </div>  
    </body> 
</html> 

的Javascript:

$(document).on('pagebeforeshow', '#index', function(){ 
    $(document).on('vmousedown','.btnWhite' ,function(){ 
     $(".btnWhite").addClass('on'); 
    }).on('vmouseup', function(){ 
     $(".btnWhite").removeClass('on'); 
    }).on("vmousecancel", function() { 
     $(".btnWhite").removeClass('on'); 
    }); 
}); 

CSS:

.btnWhite { 
    background:gray !important; 
} 
.on { 
    background:black !important; 
}