摘要: json与cookie 阅读全文
posted @ 2019-03-27 15:02 L某人 阅读(2395) 评论(0) 推荐(0)
摘要: document.scrollingElement属性返回文档的滚动元素。也就是说,当文档整体滚动时,到底是哪个元素在滚动。 标准模式下,这个属性返回的文档的根元素document.documentElement(即)。兼容(quirk)模式下,返回的是元素,如果该元素不存在,返回null。 // 页面滚动到浏览器顶部 document.scrollingElement.scrollTop =... 阅读全文
posted @ 2019-03-27 10:39 L某人 阅读(564) 评论(0) 推荐(0)
摘要: 浏览器代理检测,可以检测出来用户使用的浏览器类型,也可以检测浏览器所在的操作系统 navigator.userAgent (1)、判断浏览器类型 var t = navigator.userAgent; if(t.indexOf('Trident')!= -1){ console.log('ie内核') }else if(t.indexOf('Presto')... 阅读全文
posted @ 2019-03-27 10:09 L某人 阅读(781) 评论(0) 推荐(0)