onclick
,我需要
我对第一部分有特别的困难。
答案 0 :(得分:3)
$('.grid input[type="checkbox"]').click(function(){
$(this).parent().css('background-color', 'red');
});
更新(供属性使用)
function clickHandler() {
$(this).parent().css('background-color', 'red');
}
然后onclick='clickHandler()'
答案 1 :(得分:1)
如果你用jquery附加事件就很容易
$('#yourid').click(function(){
var parent = $(this).parent();
parent.css("background-color", "red");
});