How to check a radio button with jQuery?

前端 未结 30 2094
独厮守ぢ
独厮守ぢ 2020-11-22 08:12

I try to check a radio button with jQuery. Here\'s my code:

30条回答
  •  不思量自难忘°
    2020-11-22 09:13

    $("input[name=inputname]:radio").click(function() {
        if($(this).attr("value")=="yes") {
            $(".inputclassname").show();
        }
        if($(this).attr("value")=="no") {
            $(".inputclassname").hide();
        }
    });
    

提交回复
热议问题