如何在phonegap android上点击时更改div的背景颜色

时间:2013-06-13 02:18:20

标签: android android-layout jquery-mobile cordova

我只是想知道如何在触摸phonegap android时更改div的背景。 我也在使用jquery mobile。

谢谢, 伯纳德

1 个答案:

答案 0 :(得分:0)

试试这个DEMO http://jsfiddle.net/yeyene/5kfnT/2/

JQUERY

$(document).ready(function(){
    $(function() {
        // Bind the tapHandler callback function to the tap event on div.box
        $( ".upload" ).on( 'vclick', tapHandler ); 
        // Callback function references the event target and adds the 'tap' class to it
        function tapHandler() {
            $(this).css('background','yellow');
        }
    });
});