12 回答

TA貢獻1799條經驗 獲得超6個贊
$(document).ready(function () {
??????????? $("#divExpress").find(".rbox").each(function () {
??????????????? $(this).click(function () {
??????????????????? $(this).parent().parent().parent().children().removeClass("focus");
??????????????????? $(this).parent().parent().toggleClass("focus", this.checked);
??????????????? });
??????????? });
??????? });
?
希望有用

TA貢獻1852條經驗 獲得超1個贊
$('#divExpress li').each(function(){
$(this).click(function(){
$('#divExpress li').removeClass('focus');
$(this).addClass('focus');
});
});

TA貢獻1789條經驗 獲得超10個贊
@暗塵掩月:?
$('.rbox').each(function(){
$(this).click(function(){
$('.rbox').removeClass('focus');
$(this).addClass('focus');
});
});

TA貢獻1815條經驗 獲得超6個贊
$('.rbox').each(function(){
$(this).click(function(){
$('.rbox').removeClass('focus');
$(this).addClass('focus');
});
});

TA貢獻1921條經驗 獲得超9個贊
@暗塵掩月: 不急不急,馬上來
$('.rbox').each(function(){
$(this).click(function(){
$('#divExpress li').removeClass('focus');
$(this).parent().prev().prev().addClass('focus');
});
});

TA貢獻1858條經驗 獲得超8個贊
$('.rbox').each(function(){
$(this).click(function(){
$('#divExpress li').removeClass('focus');
$(this).parent().prev().prev().addClass('focus');
});
});

TA貢獻1785條經驗 獲得超8個贊
$(function () {
??????????? $(":radio").click(function () {
??????????????? if (this.checked) {
??????????????????? $(this).parent("span").parent("li").addClass("p");
??????????????? }
??????????? });
??????? });再修改修改吧!
添加回答
舉報