阐述

最近在做一个商场()移动端)项目,需求是在商品详情页面返回到首页时,手机返回键可以实现这种效果
首页:
1.jpg
详情页:
02.jpg

代码

  1. <script type="text/javascript">
  2. /* 取消手機自帶的返回鍵功能調用返回首頁方法 */
  3. if (window.history && window.history.pushState) {
  4. $(window).on('popstate', function() {
  5. var hashLocation = location.hash; var hashSplit = hashLocation.split("#!/");
  6. var hashName = hashSplit[1];
  7. if (hashName !== '') {
  8. var hash = window.location.hash; if (hash === '') {
  9. backToindex();
  10. }
  11. }
  12. });
  13. window.history.pushState('forward', null, './#forward');
  14. }
  15. </script>