0

嗨,我正在使用 JQM 制作混合应用程序。我想在按下或点击(按住)按钮时添加课程。

这是我的代码...

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

CSS

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

jQuery 移动

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

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

1 回答 1

2

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

在这个例子中,我使用了vmousedown,vmouseupvmousecancel事件,所以我可以在桌面/移动设备上测试它。只需将它们替换为touchstart,如果您愿意touchendtouchcancel它也适用于 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; 
}
于 2013-05-29T14:19:51.183 回答