javascript中操作元素属性
1、 setAttribute():设置属性的值;
getAttribute():得到属性的值;
removeAttribute():移除属性;
2、offsetWidth:offsetWidth = width+padding+border;
clientHeight:clientHeight = width+padding;
3、事件函数里面的event对象,兼容写法:ev || window.event;
4、ev.clientX:鼠标相对于浏览器窗口的左偏移;
ev.clientY:鼠标相对于浏览器窗口的上偏移;
5、ev.pageX:鼠标相对于文档的左偏移;
ev.pageY:鼠标相对于文档的上偏移;
6、阻止事件冒泡:ev.cancelBubble = true;
7、阻止默认事件:找到事件的源头,return false;