欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js坚持不懈之17:onmousedown、onmouseup 以及 onclick 事件

程序员文章站 2022-05-25 19:43:33
2. ......
<!doctype html>
<html>
<body>
<div onmouseover = "mover(this)" onmouseout = "mout(this)" style = "background-color:green;width:120px;height:20px;padding:40px;color:#ffffff;">把鼠标移到上面</div>

<script>
function mover(obj)
{
    obj.innerhtml = "谢谢"
}

function mout(obj)
{
    obj.innerhtml = "把鼠标移到上面"
}
</script>
</body>

</html>

2.

<!doctype html>
<html>
<body>

<div onmousedown = "mdown(this)" onmouseup = "mup(this)" style = "background:green;color:#ffffff;width:90px;height:20px;padding:40px;font-size:12px;">请点击这里</div>

<script>
function mdown(obj)
{
    obj.style.backgroundcolor = "#1ec5e5";
    obj.innerhtml = "请释放鼠标按钮"
}

function mup(obj)
{
    obj.style.backgroundcolor = "green";
    obj.innerhtml = "请按下鼠标按钮"
}
</script>

</body>
</html>