美文网首页
js的事件

js的事件

作者: 陈庆香 | 来源:发表于2018-07-31 17:43 被阅读0次

    事件

    #box1{

    background: lightblue;

    }

    js的事件

    写法:

    dom.事件名 = function(){

    点击之后执行的动作

    }

    onclick 点击事件

    onmouseover 鼠标移上事件

    onmouseout 鼠标移出事件

    -->

    点我试试!

    变变变

    // 1.获取要点击的元素


    var oDiv = document.getElementById("box1");


    var oBtn = document.getElementById("btn");

    // 2.绑定点击事件  function函数(方法)--点击做什么

    oBtn.onclick = function(){

    // alert("你居然真的点了!~~");

    oDiv.style.cssText = "background: yellow;";

    }

    // 绑定鼠标移上事件

    oDiv.onmouseover = function(){

    // alert("干嘛移过来?!");

    oDiv.style.cssText = "background: lightgreen;";

    }

    // 绑定鼠标移出事件

    oDiv.onmouseout = function(){

    oDiv.style.cssText = "background: lightcoral;";

    }

    相关文章

      网友评论

          本文标题:js的事件

          本文链接:https://www.haomeiwen.com/subject/ljghvftx.html