jQuery 의 bind 와 unbind 사건(귀속 화해 귀속 사건)
귀속 을 해제 하 는 것 은 귀속 을 접촉 하 는 것 입 니 다.귀속 이벤트 가 효력 을 잃 습 니 다.
조심 하 세 요. .이벤트 예 를 들 어(click()는 하나의 바 인 딩 이벤트 의 약자(bid("click")입 니 다.
html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>02_ .html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script language="JavaScript" src="../js/jquery-1.4.2.js"></script>
<link rel="stylesheet" type="text/css" href="./css/style.css" rel="external nofollow" />
</head>
<body>
<div id="panel">
<input type="button" id="start" value=" ">
<input type="button" id="stop" value=" ">
<h5 class="head"> jQuery?</h5>
<div class="content">
jQuery Prototype JavaScript , John Resig 2006 1 。jQuery , JavaScript HTML 、 DOM、 、 Ajax。 JavaScript 。
</div>
</div>
</body>
<script language="JavaScript">
// h5 , ; h5 ,
// $("h5").click(function(){
// if($("div[class=content]").is(":hidden")){
// $("div[class=content]").show();
// }else{
// $("div[class=content]").hide();
// }
// })
// //
// $("#start").click(function(){
// /*
// * :
// * bind(type,data,fn)
// * * type:
// * * data:( ) event.data
// * * fn: ,function(){}
// */
// $("h5").bind("click",function(){
// if($("div[class=content]").is(":hidden")){
// $("div[class=content]").show();
// }else{
// $("div[class=content]").hide();
// }
// });
//
// });
// $("#stop").click(function(){
// /*
// *
// * unbind(type,fn)
// * * type:( )
// * * fn:( )
// */
// $("h5").unbind();
// });
// $("h5").mouseover(function(){
// $("div[class=content]").show();
// }).mouseout(function(){
// $("div[class=content]").hide();
// });
//
$("#start").click(function(){
/*
* :
* * ,
*/
$("h5").bind("mouseover mouseout",function(){
if($("div[class=content]").is(":hidden")){
$("div[class=content]").show();
}else{
$("div[class=content]").hide();
}
});
});
$("#stop").click(function(){
/*
* unbind(type)
* * :
* * :
* * :
*/
$("h5").unbind("mouseover mouseout");
});
</script>
</html>
이상 jQuery 의 bind 와 unbind 사건(귀속 화해 귀속 사건)은 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 해 주시 고 많은 응원 부 탁 드 리 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.