工作示例:http: //jsfiddle.net/Gajotres/LvhdG/
在这个例子中,我使用了vmousedown
,vmouseup
和vmousecancel
事件,所以我可以在桌面/移动设备上测试它。只需将它们替换为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;
}