码迷,mamicode.com
首页 > Web开发 > 详细

js事件之onmousedown和onmouseup

时间:2017-05-04 18:34:33      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:body   func   doc   art   htm   type   红色   释放   绿色   

<!DOCTYPE html>
<html>
<head>
<script>
function mouseDown()
{
document.getElementById("p1").style.color="red";
}

function mouseUp()
{
document.getElementById("p1").style.color="green";
}
</script>
</head>
<body>

<p id="p1" onmousedown="mouseDown()" onmouseup="mouseUp()">
请点击文本!

mouseDown() 函数当鼠标button在段落上被按下时触发。

此函数把文本颜色设置为红色。mouseUp() 函数在鼠标button被释放时触发。mouseUp() 函数把文本的颜色设置为绿色。

</p> </body> </html>


js事件之onmousedown和onmouseup

标签:body   func   doc   art   htm   type   红色   释放   绿色   

原文地址:http://www.cnblogs.com/lytwajue/p/6808233.html

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