我有一個表格行,點擊時會觸發一個事件。在行內有(未顯示)複選框+其樣式化標籤。點擊觸發事件除了複選框+標籤
我想要的是防止(我猜用:不是或.not(),但不能弄清楚)執行如果複選框/標籤被點擊。
HTML:
CSS:
center {
margin-top:20px;
}
input[type=checkbox] + label {
width:10px;
height:10px;
background-color:red;
}
input[type=checkbox] {
display:none;
}
table tr {
height:40px;
background-color:gray;
}
table td {
padding:5px;
}
JS:
$('.pend').on('click',function(){
$(this).append('text');
return false;
})
的jsfiddle:http://jsfiddle.net/ySuGB/2/
所以執行過程需要單擊行時發生,但不復選框或標籤? –
@sweettea是的,複選框/標籤除外。 –