码迷,mamicode.com
首页 > 其他好文 > 详细

封装事件框架

时间:2019-09-28 23:30:20      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:rip   extend   ext   type   oct   back   框架   over   使用   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        div{
            width: 100px;
            height: 100px;
            background: red;
        }
    </style>
</head>
<body>
<button id="btn">按钮</button>
<div id=div></div>
</body>
<script src=itcast.js></script>
<script type="text/javascript">

    //测试
    $$.event.click(btn, function(){
        document.getElementsByTagName(div)[0].style.background = green
    });

    $$.event.mouseover(div, function(){
        this.style.background = blue
    });

    $$.event.mouseout(div, function(){
        this.style.background = pink
    });

</script>
</html>

使用 extend 改造

$$.hover(‘div‘   ,   function(){  }  ,  function(){  } ) ;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        div{
            width: 100px;
            height: 100px;
            background: red;
        }
    </style>
</head>
<body>
<button id="btn">按钮</button>
<div id=div></div>
</body>
<script src=‘itcast2.js‘></script>
<script type="text/javascript">

    //测试
    $$.click(btn, function(){
        document.getElementsByTagName(div)[0].style.background = green
    });

    $$.hover(‘div‘, function(){                    
        this.style.background = ‘blue‘
    },function(){
        this.style.background = ‘pink‘
    });

</script>
</html>

 

封装事件框架

标签:rip   extend   ext   type   oct   back   框架   over   使用   

原文地址:https://www.cnblogs.com/shanlu0000/p/11605191.html

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