手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery判断浏览器后退时候弹出消息的方法
jquery判断浏览器后退时候弹出消息的方法
摘要:浏览器后退时必定会有一些消息,这里使用jquery判断浏览器后退并弹出消息jQuery(document).ready(function($...

浏览器后退时必定会有一些消息,这里使用jquery判断浏览器后退并弹出消息

jQuery(document).ready(function ($) { 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("Back button isn't supported. You are leaving this application on next clicking the back button"); } } }); window.history.pushState('forward', null, './#forward'); } });

【jquery判断浏览器后退时候弹出消息的方法】相关文章:

Jquery注册事件实现方法

jQuery解析XML文件同时动态增加js文件的方法

Jquery动态添加输入框的方法

jQuery判断指定id的对象是否存在的方法

jQuery取消ajax请求的方法

jquery读取xml文件实现省市县三级联动的方法

jQuery获取页面元素绝对与相对位置的方法

jQuery实现首页图片淡入淡出效果的方法

JS实现兼容各浏览器解析XML文档数据的方法

js控制网页前进和后退的方法

精品推荐
分类导航