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

夺命雷公狗jquery---22-bind为jquery对象绑定多个相关事件

时间:2015-10-26 18:30:20      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="js/jquery.js"></script>
        <script>
            //页面载入ready方法
            $(function(){
                $(img).bind({
                    mouseover:function(){
                        $(#result).html(GOGOGOG);
                    },
                    mouseout:function(){
                        $(#result).html(OUTOUT);
                    }
                });
            });
        </script>
    </head>
    <body>
        <input type="button" id="btnok" value="OK" />
        <hr />
        <img src="images/1.jpg">
        <hr />
        <div id="result"></div>
    </body>
</html>

 

该方法要求参数是一个json对象

夺命雷公狗jquery---22-bind为jquery对象绑定多个相关事件

标签:

原文地址:http://www.cnblogs.com/leigood/p/4911933.html

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