今日观看智能社的javascript视频之深入javascript,主要学习的内容有如下几点:
1.获取非行间css样式的方法:
//IE
obj.currentStyle[attr]
//FF Chrome
getComputedStyle(obj, false)[attr]
2.数组的基本操作
插入:push() unshift()
删除:pop() shift()
万能方法: splice(index, length, args)
数组排序: sort(function(n1, n2){return n1 - n2}