我只是想知道如何在触摸phonegap android时更改div的背景。 我也在使用jquery mobile。
谢谢, 伯纳德
答案 0 :(得分:0)
试试这个DEMO 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');
}
});
});