jquery - show textbox when checkbox checked

后端 未结 7 657
伪装坚强ぢ
伪装坚强ぢ 2021-01-21 08:44

I have this form

7条回答
  •  滥情空心
    2021-01-21 09:43

    Change:

    if ($(this).is(':checked')) $('div.max_tickets').show();
    

    To:

    if ($(this).is(':checked')) $(this).next('div.max_tickets').show();
    

    jsFiddle example here

提交回复
热议问题