If Radio button checked show div
问题 I have HTML CODE below: $('input[type="radio"]').click(function(){ if($(this).attr("value")=="ABC"){ $(".Box").hide('slow'); } if($(this).attr("value")=="PQR"){ $(".Box").show('slow'); } }); <table> <tr> <td align="left" height="45"> <input type="radio" class="radioBtn" name="Radio" id="Radio" value="ABC" required> ABC <input class="radioBtn" type="radio" name="Radio" id="Radio" value="PQR" required> PQR <div class="Box" style="display:none">Text</div> </td> </tr> </table> All above code is