码迷,mamicode.com
首页 > 编程语言 > 详细

javascript中操作元素属性

时间:2017-05-14 23:41:09      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:width   idt   窗口   冒泡   函数   attr   border   turn   属性   

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;

javascript中操作元素属性

标签:width   idt   窗口   冒泡   函数   attr   border   turn   属性   

原文地址:http://www.cnblogs.com/ilovexiaoming/p/6854237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!