-2

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

谢谢,伯纳德

4

1 回答 1

0

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

查询

$(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');
        }
    });
}); 
于 2013-06-13T03:31:25.943 回答