美文网首页
2019-05-27 事件对象

2019-05-27 事件对象

作者: qiaoguoxing | 来源:发表于2019-05-27 21:34 被阅读0次

    像这个样子不知道到底怎么拿到参数的时候可以通过console.log()的方式把event打印出来
    <!DOCTYPE html>

    <html lang="en">

    <head>

      <meta charset="UTF-8">

      <meta name="viewport" content="width=device-width, initial-scale=1.0">

      <meta http-equiv="X-UA-Compatible" content="ie=edge">

      <title>Document</title>

    </head>

    <body>

    <!-- <button id="aaa" style="width:80px; height:20px;"></button>  -->

    <input style="width:80px;height:20px" id="aaa" type="button" type="button" value="qs">

    </body>

    <script>

    var aaa = document.getElementById('aaa');

    aaa.onclick = function(event){

        console.log(event.target.offsetHeight);

        console.log(event.target.offsetWidth);

    }

    </script>

    </html>

    相关文章

      网友评论

          本文标题:2019-05-27 事件对象

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