javascript监听手机返回键详解编程语言

javascript监听手机返回键


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

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/18812.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论