所以這就是我想要做的;jQuery - 如果在同一個事件中條件相同的函數
點擊一個按鈕來添加類「點擊」
點擊同一個按鈕上再次彈出警告。
當前警報出現在同一次點擊。
感謝
http://jsfiddle.net/bazzle/d68wsa32/
HTML
<div class="button">
button click here
</div>
<div class="button">
button click here
</div>
<div class="button">
button click here
</div>
jQuery的
$('.button').each(function(){
$(this).on('click',function(){
$(this).addClass('clicked');
if ($(this).hasClass('clicked')){
alert('bingo');
};
});
});
CSS
.button{
background-color:red;
color:white;
padding:1em;
margin:5px;
text-align:center;
}
.clicked{
background-color:black;
}
因爲您添加的類比檢查!這就像抓住一張紙,而不是檢查手中是否有紙。它應該在那裏,因爲你剛剛拿起它。 – epascarello