我是 jquery mobile 的新手。我使用从stackoverflow获取的代码。我的问题是,这个解决方案在三星和其他方面运行良好,但在 iphone 和索尼立信中不起作用。请帮助任何人...
我想通过单击链接在页面底部向下滚动时返回页面顶部。
这是我的代码:
<a id="uptotop" class="ui-btn-right" data-icon="arrow-u" data-theme="a">▲TOPにもどる </a>
<script type="text/javascript">
$('div').live('pagebeforecreate',function(event, ui){
$('#uptotop').live('click',function() {
$('html, body').animate({scrollTop: '0px'}, 800);
});
});
</script>