javascript监听手机返回键

javascript监听手机返回键

<pre>
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 === '') {
$('.tcclose').css('display', 'none');
return false;
}
}
});
window.history.pushState('forward', null);
}
</pre>

猜你喜欢

转载自www.cnblogs.com/newmiracle/p/11856223.html