当用户在手机上触摸/点击时,我正在尝试更改链接的背景颜色,尽管以下代码有效,但有时链接仍然是黑色并且在您释放时不会变回白色,有没有更好的方法编码呢?
$('#test').bind('touchstart', function() {
$(this).css('background-color', 'black');
});
$('#test').bind('touchend', function() {
$(this).css('background-color', 'white');
});
谢谢!