摘要: function isMobile(){ var sUserAgent= navigator.userAgent.toLowerCase(), bIsIpad= sUserAgent.match(/ipad/i) == "ipad", bIsIphoneOs= sUserAgent.ma... 阅读全文
posted @ 2015-03-31 16:19 午时的海 阅读(811) 评论(0) 推荐(0) 编辑
摘要: js设置cookie有很多种方法。第一种:(这个是w3c官网的代码)第二种:第三个例子: 名称 ... 阅读全文
posted @ 2015-03-31 15:56 午时的海 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: function cookieGO(name) { var today = new Date(); var expires = new Date(); expires.setTime(today.getTime() + 1000*60*60*24); setCookie("cookieval... 阅读全文
posted @ 2015-03-31 15:13 午时的海 阅读(5953) 评论(0) 推荐(0) 编辑