我在iPhone上测试我们的网页时遇到了这个奇怪的问题。有一个"返回顶部"屏幕右下角的链接适用于所有桌面浏览器以及Android手机。但是当我们在iPhone上测试时,我们必须点击该链接两次以使其正常工作。
您可以在此处查看舞台网站:http://www.maverick-eng.com.php53-14.dfw1-1.websitetestlink.com/
请告知。
由于 萨米特
答案 0 :(得分:0)
你可以在这里做两件事:
<a href="#top">Back to top of page</a>
或使用JavaScript
/* You can set the scrollTop */
$('html,body').scrollTop(0);
/* Or if you want a little animation instead of a snap to the top: */
$('html, body').animate({ scrollTop: 0 }, 'fast');