Android-jquery mobile:如何定义按钮onclick的css

时间:2011-09-29 11:44:27

标签: android jquery-mobile

我在Android的WebView中使用了jQueryMobile页面。对于我的jQM页面按钮,我有css ... ..

jQuery(".pm_btn").css("background-image", "url(bluebutton.png)");

jQuery('.pm_btn').mousedown(function() {
  jQuery(this).css("background-image", "url(redbutton.png)";                                    
}).mouseup(function() {
  jQuery(this).css("background-image", "url(bluebutton.png)");
});

` 在按钮onclick上,当我从Web浏览器访问jQM页面时,背景图像正在正确翻转。但是,当我从Android的WebView访问同一页面时,这不起作用。

任何人都可以帮我解决这个问题。

提前致谢。

谢谢, nehatha

1 个答案:

答案 0 :(得分:1)

它对我有用

$('.btn').bind("vmousedown", function() {
jQuery(this).css("background-image", "url(image1.png)");                                    
}).bind("vmouseup", function() {
$(this).css("background-image", "url(image2.png)");                                 
});