<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無(wú)標題文檔</title>
<script type="text/javascript"></script>
<script type="text/javascript" src="jquery3/jquery-3.2.1.js"></script>
<style type="text/css">
div{
width: 200px;
height: 80px;
background-color: aquamarine;
}
</style>
</head>
<body>
<button type="button" id="add">add div</button>
<button type="button" id="del">del div</button>
<button type="button" id="onbut">綁定事件</button>
<button type="button" id="delbut">解除事件</button>
<button type="button" id="pp" value="88888">6666</button>
<div id="cont">
<div class="created">我是原生態(tài)DIV</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#add").click(function(){
$("#cont").prepend("<div class='created'>我是原生態(tài)DIV1</div>")
})
$("#del").click(function(){
$("div").remove(".created:first")
})
$("#onbut").click(function(){
$("#pp,#cont").on(" mouseover click",function(){ //在多個(gè)控制器上綁定多個(gè)事件
alert("1111111111111111111111111111")
})
$("#delbut").click(function(){
$("#pp,#cont").off("mouseover click") //在部分控制器移除了綁定的事件,也可部分
})
})
})
</script>
</body>
</html>
聯(lián)系客服