一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

jQuery綁定事件

 以怪力亂神 2018-11-15
普通綁定

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>title</title>
<script src="jquery-1.12.1.js"></script>
<script>
$(function () {

//為按鈕綁定鼠標進入,鼠標離開,點擊事件
//第一種寫法
// $("#btn").mouseenter(function () {
// $(this).css("backgroundColor","red");
// });
// $("#btn").mouseleave(function () {
// $(this).css("backgroundColor","green");
// });
// $("#btn").click(function () {
// alert("啊~我被點了");
// });

//第二種寫法:鏈式編程
// $("#btn").mouseenter(function () {
// $(this).css("backgroundColor","red");
// }).mouseleave(function () {
// $(this).css("backgroundColor","green");
// }).click(function () {
// alert("啊~我被點了");
// });

//第三種寫法:bind方法綁定事件
// $("#btn").bind("click",function () {
// alert("哦買雷電嘎嘎鬧");
// });
// $("#btn").bind("mouseenter",function () {
// $(this).css("backgroundColor","red");
// });
// $("#btn").bind("mouseleave",function () {
// $(this).css("backgroundColor","green");
// });

//第四種寫法:bind鏈式編程
// $("#btn").bind("click",function () {
// alert("哦買雷電嘎嘎鬧");
// }).bind("mouseenter",function () {
// $(this).css("backgroundColor","red");
// }).bind("mouseleave",function () {
// $(this).css("backgroundColor","green");
// });
//第五種寫法:使用鍵值對的方式綁定事件
// $("#btn").bind({"click":function () {
// alert("哦買雷電嘎嘎鬧");
// },"mouseenter":function () {
// $(this).css("backgroundColor","red");
// },"mouseleave":function () {
// $(this).css("backgroundColor","green");
// }});
});
</script>
</head>
<body>
<input type="button" value="顯示效果" id="btn"/>

</body>
</html>

通過父元素綁定

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>title</title>
<style>
div {
width: 200px;
height: 100px;
border: 2px solid green;
}

p {
width: 150px;
height: 50px;
border: 1px solid red;
cursor: pointer;
}
</style>
<script src="jquery-1.12.1.js"></script>
<script>
//點擊按鈕為div中的p標簽綁定事件
$(function () {
$("#btn").click(function () {
//為父級元素綁定事件,父級元素代替子級元素綁定事件
//子級元素委托父級綁定事件

//父級元素調用方法,為子級元素綁定事件
$("#dv").delegate("p", "click", function () {
alert("啊!~,被點了");
});
});
});

//為元素綁定事件三種方式
/*
* 對象.事件名字(事件處理函數(shù));---$("#btn").click(function(){});
* 對象.bind("事件名字",事件處理函數(shù));---$("#btn").bind("click",function(){});
* 父級對象.delegate("子級元素","事件名字",事件處理函數(shù));---->$("#dv").delegate("p","click",function(){});
*
*
* */
</script>
</head>
<body>
<input type="button" value="為div綁定事件" id="btn"/>
<div id="dv">
<p>這是p</p>
</div>
</body>
</html>

綁定相同事件

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>title</title>
<script src="jquery-1.12.1.js"></script>
<script>
$(function () {
//為按鈕綁定多個相同事件
$("#btn").click(function () {
console.log("小蘇好猥瑣哦");
}).click(function () {
console.log("小蘇好美啊");
}).click(function () {
console.log("天冷了,注意身體");
});

// $("#btn").bind("click",function () {
// console.log("哈哈,我又變帥了");
// }).bind("click",function () {
// console.log("我輕輕來,正如我輕輕走,揮一揮手,不帶走一個妹子");
// });

//bind方法綁定多個相同的事件的時候,如果使用的是鍵值對的方式,只能執(zhí)行最后一個
// $("#btn").bind({"click":function () {
// console.log("如果有一天我邪惡了");
// },"click":function () {
// console.log("請記住,我曾純潔過");
// }});

});

//bind方法內部是調用的另一個方法綁定的事件

</script>
</head>
<body>
<input type="button" value="顯示效果" id="btn"/>

</body>
</html>

不同方法的區(qū)別

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>title</title>
<script>
/*
*
* 對象.事件名字(事件處理函數(shù));--->普通的寫法
* 對象.bind(參數(shù)1,參數(shù)2);---->參數(shù)1:事件的名字,參數(shù)2:事件處理函數(shù)
* 前兩種方式只能為存在的元素綁定事件,后添加的元素沒有事件
*
* 下面的兩種方式,可以為存在的元素綁定事件,后添加的元素也有事件
* 父級元素調用方法,代理子級元素綁定事件
* 父級元素對象.delegate("選擇器","事件名字",事件處理函數(shù));
* 父級元素對象.on("事件名字","選擇器",事件處理函數(shù));
*
* 因為delegate方法中是調用的on的方法
* 所以,以后直接用on就可以了
*
*
*
*
* */
</script>
</head>
<body>


</body>
</html>

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內容均由用戶發(fā)布,不代表本站觀點。請注意甄別內容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多

    九九九热视频免费观看| 亚洲欧洲一区二区综合精品| 成人午夜爽爽爽免费视频| 夫妻性生活动态图视频| 欧美精品女同一区二区| 日本高清二区视频久二区| 中文字幕佐山爱一区二区免费| 国产精品人妻熟女毛片av久| 国产精品日韩欧美第一页| 狠狠做五月深爱婷婷综合| 麻豆最新出品国产精品| 少妇特黄av一区二区三区| 日木乱偷人妻中文字幕在线| 麻豆tv传媒在线观看| 亚洲一区二区福利在线| 人人爽夜夜爽夜夜爽精品视频| 婷婷激情四射在线观看视频| 国产欧美日韩综合精品二区| 国产又粗又猛又大爽又黄| 欧美国产日本免费不卡| 日本一级特黄大片国产| 欧美黄色黑人一区二区| 国产不卡最新在线视频| 精品推荐久久久国产av| 日韩精品亚洲精品国产精品| 亚洲日本韩国一区二区三区| 日韩特级黄色大片在线观看| 中文字幕区自拍偷拍区| 亚洲最新的黄色录像在线| 午夜小视频成人免费看| 女人精品内射国产99| 91精品蜜臀一区二区三区| 精品一区二区三区人妻视频| 黄色国产自拍在线观看| 日本办公室三级在线观看| 人妻久久一区二区三区精品99| 美女被后入视频在线观看| 中文字幕高清免费日韩视频| 开心激情网 激情五月天| 91插插插外国一区二区| 国产又粗又硬又长又爽的剧情|