類數(shù)組轉(zhuǎn)數(shù)組
- 不考慮兼容性Array.prototype.slice.call()
- 考慮IE兼容 HTMLCollection、NodeList
newArr = [];
while(i)
arr[--i] = arr[i]
類型判斷
- type/instanceof
- toString(不考慮鴨子類型)
- 判斷數(shù)組
typeof arr.sort == 'function'
arr.constructor == 'array'
'splice' in arr
- 判斷window對象
- toString (不同版本瀏覽器不同)
- window == document //ie678 true
- document == window //ie678 false
- 判斷類數(shù)組
- 有l(wèi)ength
- type function/array
- {}.propertyIsEnumerable 判斷是否可遍歷屬性
domReady機(jī)制
- API判斷 onReadyStateChange
- 為了解決IE死鏈左驾,document.wirte 一個標(biāo)簽,在創(chuàng)建的標(biāo)簽上 onReadyStateChange后重新初始化.
- firefox 上沒有這個API
function checkScoll(){
try{
html.onScoll('left');
onload()
} catch(e) {
settimeout(checkScoll)
}
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者