window.onload 和 document.onDOMContentLoaded的区别
window.onload
与document.onDOMContentLoaded
都表示当页面加载元素(包括图片等信息)完毕后执行的操作,两者间的主要差别如下:
- 当
window.onload
事件需等到页面上所有的DOM、样式表、脚本、图片及flash都已经加载完成后触发。 - 当
document.onDOMContentLoaded
事件在DOM加载完成后就会触发,而不必等到样式表、图片和flash等元素加载完成之后。
获取真实宽高
一、如何获取图片的真实宽高
- 对于支持HTML5的浏览器可以使用
naturalWidth
/naturalHeight
来直接获取图片的真实宽高:
var naturalWidth = document.getElementById('img').naturalWidth,
naturalHeight = document.getElementById('img').naturalHeight;
- IE7/8中可以使用
new Image()
来获取:
function getNaturalSize (Domlement) {
var img = new Image();
img.src = DomElement.src;
return {
width: img.width,
height: img.height
};
}
// 使用
var natural = getNaturalSize (document.getElementById('img')),
natureWidth = natural.width,
natureHeight = natural.height;
二、如何获取元素的真实宽高
- 使用jquery:
$("#id").height();
- 使用DOM:
document.getElementById("id").style.height (需要这样设置才能获取到高度,<div id="idName" style="height:300px;">);
document.getElementById("id").offsetHeight;
document.getElementById("id").clientHeight;
- 使用window.getComputedStyle():
var width = window.getComputedStyle(document.getElementById("id")).width;
var height = window.getComputedStyle(document.getElementById("id")).height;
URL的编码/解码方法
URL通过ASCII字符集利用因特网进行发送,其只能使用英文字母、阿拉伯数字和某些标点符号,不能使用其他文字和符号。这意味着如果URL中存在汉字,就必须编码后才能使用。
"只有字母和数字[0-9a-zA-Z]、一些特殊符号"$-_.+!*'(),"[不包括双引号]、以及某些保留字,才可以不经过编码直接用于URL。"
JavaScript提供四个URL的编码/解码方法:
- decodeURI()
- decodeURIComponent()
- encodeURI()
- encodeURIComponent()
区别
- encodeURI()方法不会对下列字符编码:
- ASCII字母
- 数字
- ~!@#$&*()=:/,;?+'
- encodeURIComponent()方法不会对下列字符编码
- ASCII字母
- 数字
- ~!*()'
cookie & session &localStorage
一、cookie
- cookie是存储在浏览器上的一小段数据,用来记录某些当页面关闭或者刷新后仍然需要记录的信息。在控制台用 「document.cookie」查看你当前正在浏览的网站的cookie。
- cookie可以使用 js 在浏览器直接设置(用于记录不敏感信息,如用户名), 也可以在服务端通使用 HTTP 协议规定的 set-cookie 来让浏览器种下cookie,这是最常见的做法。(打开一个网站,清除全部cookie,然后刷新页面,在network的Response headers试试找一找set-cookie吧)
- 每次网络请求 Request headers 中都会带上cookie。所以如果 cookie 太多太大对传输效率会有影响。
- 一般浏览器存储cookie 最大容量为4k,所以大量数据不要存到cookie。
- 设置cookie时的参数:
- path:表示 cookie 影响到的路径,匹配该路径才发送这个 cookie。
- expires 和 maxAge:告诉浏览器 cookie 时候过期,maxAge 是 cookie 多久后过期的相对时间。不设置这两个选项时会产生 session cookie,session cookie 是 transient 的,当用户关闭浏览器时,就被清除。一般用来保存 session 的 session_id。
- secure:当 secure 值为 true 时,cookie 在 HTTP 中是无效,在 HTTPS 中才有效。
- httpOnly:浏览器不允许脚本操作 document.cookie 去更改 cookie。一般情况下都应该设置这个为 true,这样可以避免被 xss 攻击拿到cookie。
二、session
当一个用户打开淘宝登录后,刷新浏览器仍然展示登录状态。服务器如何分辨这次发起请求的用户是刚才登录过的用户呢?这里就使用了session保存状态。用户在输入用户名密码提交给服务端,服务端验证通过后会创建一个session用于记录用户的相关信息,这个 session 可保存在服务器内存中,也可保存在数据库中。
- 创建session后,会把关联的session_id 通过setCookie 添加到http响应头部中。
- 浏览器在加载页面时发现响应头部有 set-cookie字段,就把这个cookie 种到浏览器指定域名下。
- 当下次刷新页面时,发送的请求会带上这条cookie, 服务端在接收到后根据这个session_id来识别用户。
cookie 是存储在浏览器里的一小段「数据」,而session是一种让服务器能识别某个用户的「机制」,session 在实现的过程中需要使用cookie。 二者不是同一维度的东西。
三、localStorage
- localStorage HTML5本地存储web storage特性的API之一,用于将大量数据(最大5M)保存在浏览器中,保存后数据永远存在不会失效过期,除非用 js手动清除。
- 不参与网络传输。
- 一般用于性能优化,可以保存图片、js、css、html 模板、大量数据。
示例代码
- 判断用户的浏览器类型:
function isAndroid(){
return /Android/i.test(navigator.userAgent);
}
function isIphone(){
return /iPhone/i.test(navigator.userAgent);
}
function isIpad(){
return /iPad/i.test(navigator.userAgent);
}
function isIOS(){
return /iPad|iPhone|iMac/i.test(navigator.userAgent); }
- 使用 localStorage封装一个 Storage 对象,达到如下效果
Storage.set('name', '饥人谷')
Storage.set('age', 2, 30) ; //设置 name 字段存储的值为'饥人谷'
Storage.set('teachers', ['ruoyu', 'fangfang', 'tom'], 60)
Storage.get('name') // ‘饥人谷’
Storage.get('age') // 如果不超过30秒,返回数字类型的2;如果超过30秒,返回 undefined,并且 localStorage 里清除 age 字段
Storage.get('teachers') //如果不超过60秒,返回数组; 如果超过60秒,返
解答:
var Storage = (function(){
return {
set: function(key, value, expireSeconds){
localStorage[key] = JSON.stringify({
value: value,
expired: expireSeconds===undefined?undefined:Date.now() + 1000*expireSeconds
})
},
get: function(key){
if(localStorage[key] === undefined){
return
}
var o = JSON.parse(localStorage[key])
if(o.expired === undefined || Date.now() < o.expired){
return o.value
}else{
delete localStorage[key]
}
}
}
})()
网友评论