首页 > 代码库 > 简单的事件处理
简单的事件处理
var oldColor;var oldSize;function clickDiv(obj){alert(event);obj.style.color = ‘#foo‘;obj.style.fontSize = ‘22px‘; /* obj.style表示设置obj这个对象的style属性。 obj.id表示设置id style.color表示设置css中的属性。特别注意,font-size, text-decoration等有中划线的属性,设置需要驼峰标识: fontSize,textDecoration */}function mouseover(obj){ oldcolor = obj.style.color; /*在css中使用font-Size来设置字体大小,通过js需要 使用驼峰标识(其它都类似); */ oldSize = obj.style.fontSize; obj.style.color = ‘#foo‘; obj.style.fontSize = ‘22px‘;}function mouseout(obj){ obj.style.color = oldColor; obj.style.fontSize = oldSize;}
<body>
<div onclick = ‘clickDiv(this)‘ >点一下</div>
<div onm ouseover = "mouseover(this)" onm ouseout = "mouseout(this)">移动</div>
</body>
简单的事件处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。