73cd4304 by 任超

style:cookie 过期时间

1 parent 19675dc6
......@@ -66,13 +66,6 @@ $(function () {
$('.isLogin').show();
}
})
// $(window).bind('beforeunload', function (event) {
// var n = window.event.screenX - window.screenLeft;
// var b = n > document.documentElement.scrollWidth - 20;
// if (b && window.event.clientY < 0 || window.event.altKey) {
// delCookie();
// }
// });
function delCookie() {
var keys = document.cookie.match(/[^ =;]+(?==)/g)
if (keys) {
......@@ -97,7 +90,7 @@ function clicklogin(data) {
if (result.code == 200 && result.data !== null) {
$('.loginAfter').show();
$('.isLogin').hide();
setCookie('myCookie', result.data, 0.01);
setCookie('myCookie', result.data, 0.05);
$('.loginButton').removeClass('PersonLogin')
$('.personalCenter').addClass('show');
$('.loginButton').html(getCookie('myCookie').username);
......