0
jQueryセレクターのためのちょっとした助け..問題は私がクリックすると( ".x")、( ".bigCon")もトリガーされます。 ".bigcon ")は混乱ビットのため申し訳ありません。)(" 黒"、アラートのonclickのイベントを持っています..:Djqueryセレクター:親の問題
<html>
<head>
<title></title>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script>
$(document).ready(function(){
$(".x").click(function(){
$(".evClick").removeClass("evClick").addClass("sample");
$(this).addClass("evClick");
}).mouseover(function(){
$(this).toggleClass("evHover");
}).mouseout(function(){
$(this).toggleClass("evHover");
});
$(".bigCon").click(function(){
alert("black");
});
});
</script>
<style>
.x {
width:100px;
height:100px;
margin:10px;
}
.bigCon {
background:black;
width:240px;
height:540px;
}
.sample {background:red;}
.evHover {background:green;}
.evClick {background:yellow;}
</style>
</head>
<body>
<div class="bigCon">
<div class="sample x"></div>
<div class="sample x"></div>
<div class="sample x"></div>
<div class="sample x"></div>
<div class="sample x"></div>
</div>
</body>
</html>
ありがとうございます。 –