我只是想知道在 phonegap android 上点击时如何更改 div 的背景。我也在使用jquery mobile。
谢谢,伯纳德
我只是想知道在 phonegap android 上点击时如何更改 div 的背景。我也在使用jquery mobile。
谢谢,伯纳德
试试这个演示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');
}
});
});