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

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

时间:2015-10-26 18:19:28      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="js/jquery.js"></script>
        <script>
            //页面载入ready方法
            $(function(){
                //为按钮绑定单击事件
                $(#btnok).bind(click,function(){
                    alert(hello);
                });

                $(#btnok).bind(click,function(){
                    alert(world);
                });
            })
        </script>
    </head>
    <body>
        <input type="button" id="btnok" value="OK" />
    </body>
</html>

 

 

通过运行以上代码可知,在jQuery中,bind方法绑定采用的是事件监听的形式且其调整了兼容性以及事件触发顺序统一更改为正序触发。

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

标签:

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

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