博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Jquery detect page refresh
阅读量:6642 次
发布时间:2019-06-25

本文共 1323 字,大约阅读时间需要 4 分钟。

first thing there are 3 functions we will use:

function setCookie(c_name, value, exdays) {            var exdate = new Date();            exdate.setDate(exdate.getDate() + exdays);            var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());            document.cookie = c_name + "=" + c_value;        }     function getCookie(c_name) {        var i, x, y, ARRcookies = document.cookie.split(";");        for (i = 0; i < ARRcookies.length; i++) {            x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));            y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);            x = x.replace(/^\s+|\s+$/g, "");            if (x == c_name) {                return unescape(y);            }        }    }     function DeleteCookie(name) {            document.cookie = name + '=; expires=Thu, 01-Jan-70 00:00:01 GMT;';        }

Now we will start with the page load:

$(window).load(function () { //if IsRefresh cookie exists var IsRefresh = getCookie("IsRefresh"); if (IsRefresh != null && IsRefresh != "") {    //cookie exists then you refreshed this page(F5, reload button or right click and reload)    //SOME CODE    DeleteCookie("IsRefresh"); } else {    //cookie doesnt exists then you landed on this page    //SOME CODE    setCookie("IsRefresh", "true", 1); }})

转载地址:http://abovo.baihongyu.com/

你可能感兴趣的文章
编写Linux Shell脚本的最佳实践
查看>>
邮件系统中如何过滤重复邮件?
查看>>
用wamp配置的环境,想用CMD连接mysql怎么连
查看>>
编译安装zabbix3.2,LAMP
查看>>
获取SQL执行计划的常见几种方法
查看>>
自定义数据库连接工具类
查看>>
在64位Win7环境+64位JDK下,运行64位Eclipse,提示“Failed to load the JNI shared library”错误,提示jvm.dll不对...
查看>>
永中参加第八届南京软博会 国产基础办公软件厂商彰显实力(转)
查看>>
CentOS7,访问CD-ROM中的内容
查看>>
【过程改进】10分钟进阶Nuget
查看>>
改善SQL Server内存管理
查看>>
ubutn中开启ssh服务以及开启ftp服务
查看>>
我的Logo设计简史
查看>>
Linux系统服务器 GNU Bash 环境变量远程命令执行漏洞修复命令
查看>>
iphone-common-codes-ccteam源代码 CCAutoDisappearView.h
查看>>
Python字符串格式化
查看>>
map的用法
查看>>
安卓 WebView加载本地图片时居中显示
查看>>
UITableView 优化总结
查看>>
信号量同步线程
查看>>