我在我的应用程序中使用 twitter bootstrap、jquery 和 phonegap。
我有一个带有溢出的 div:scroll 和两个按钮来浏览它:
<a href="#" id="left-button" style="float: left;"><i class="icon-chevron-left"></i></a>
<a href="#" id="right-button" style="float: right;"><i class="icon-chevron-right"></i></a>
<div id="content" style="overflow: scroll; white-space: nowrap;">
<img src="img/bandera.jpg" class="img-rounded">
<img src="img/arbol.jpg" class="img-rounded">
</div>
我有下一个 jquery 脚本来使用这些按钮:
$('#right-button').click(function(){
$('#content').animate({
scrollLeft: '+=200px'
}, 600 );
});
$('#left-button').click(function(){
$('#content').animate({
scrollLeft: '-=200px'
}, 600 );
});
但我有一个问题。这些按钮在我的桌面上的 Firefox、Chrome 甚至 IE 中都可以正常工作,并且在 Android 2.2 中也可以正常工作
但出于某种原因,在 Android 4.0 中,按钮什么也不做。