码迷,mamicode.com
首页 > 移动开发 > 详细

JS监听手机返回键

时间:2017-04-10 09:38:05      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:tor   code   pop   返回   for   log   target   null   ==   

JS监听手机返回键,需要用些前端的“奇技淫巧”。

核心代码如下:

if (window.history && window.history.pushState) 
{ $(window).on(‘popstate‘, function() { var hashLocation = location.hash; var hashSplit = hashLocation.split("#!/");
var hashName = hashSplit[1];
if (hashName !== ‘‘) { var hash = window.location.hash; if (hash === ‘‘) { alert(‘後退按鈕點擊‘); } } });
window.history.pushState(‘forward‘, null, ‘./#forward‘);
}

一个简单的demo,大家可以看看:

测试demo




JS监听手机返回键

标签:tor   code   pop   返回   for   log   target   null   ==   

原文地址:http://www.cnblogs.com/prolovecui/p/6687392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!