jQuery綁定事件-多種方式實現

 

jQuery綁定事件-多種方式實現:html

<html>
<head>
<meta charset="utf-8" />
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script><!--百度CDN-->
</head>

<body>
<input type="text"/>
<input type="button" value="button1"/>
<script>
$(function(){
    var text = $(":text");
    var button = $(":button");
    //調試器記錄日誌  console.log("message"); 如:火狐瀏覽器,打開FireBug(按F12)
    
    //觸發單個事件:兩種方式
    button.bind("mouseover",function(){
        console.log("移入");
    });
    button.bind({
        "mouseout": function(){
            console.log("移出");
        }
    });
    //多個事件:三個方式
    text.bind("dblclick blur",function(){
        console.log("雙擊或者失去焦點");
    });
    text.bind({
        "dblclick blur":function(){
            console.log("雙擊或者失去焦點");
        }
    });
    text.bind({
        "dblclick":function(){
            console.log("雙擊");
        },
        blur:function(){
            console.log("失去焦點");
        }
    });
    
    //取消事件
    text.unbind("dblclick"); //取消單個事件
    //text.unbind("dblclick blur"); //取消多個事件
    //text.unbind(); //取消所有事件
});

</script>
</body>
</html>
相關文章
相關標籤/搜索