JS监听手机返回键

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'); 
}

 

你可能感兴趣的:(jQuery,javaScript)