本文實例講述了jQuery中bind()方法用法。分享給大家供大家參考。具體分析如下:
此方法為匹配元素的特定事件綁定事件處理方法。
在語法上bind()方法和one()方法是一樣的,它們的不同在於綁定的處理方法的執行次數。
語法結構一:
代碼如下:$(selector).bind(type,data,function)
參數列表:
參數
描述
type
定義綁定到匹配元素中的事件類型。
如果有多個事件使用空格分隔。
data
可選。傳遞給事件對象的額外數據對象。
function
定義當事件發生時運行的方法。
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>bind()函數-博客園</title>
<style type="text/css">
div{
width:100px;
height:100px;
border:1px solid blue;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").bind("click",function(){$("div").css({color:"green",fontSize:"20px"})});
})
</script>
</head>
<body>
<div>博客園歡迎您</div>
</body>
</html>
語法結構二:
代碼如下:$(selector).bind({type:function, type:function, ...})
參數列表:
參數
描述
{type:function, type:function, ...}
定義綁定到匹配元素的事件和事件處理方法。
type與function參數描述如上表。
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>bind()函數-博客園</title>
<style type="text/css">
div{
width:100px;
height:100px;
border:1px solid red
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").bind({click:function(){$("div").css("color","green")},
mouseover:function(){$("div").css("background-color","blue")},
dblclick:function(){$("div").css("background-color","red")}
})
})
</script>
</head>
<body>
<div>博客園歡迎您</div>
</body>
</html>
希望本文所述對大家的jQuery程序設計有所幫助。
本文轉自:螞蟻部落http://www.softwhy.com/