欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

单选按钮的点击事件

程序员文章站 2022-07-13 12:47:49
...

单选按钮的点击事件:
HTML代码:

<td width="15%" class="td_title">按设备或医生</td>
    <td>
        <input type="radio" id="sMachineCode" name="choice"  value='1' checked="checked"/>设备编号&nbsp;
        <input type='radio' id='visitDoc' name='choice' value='2' >随访医生&nbsp;
        <input type='text' id='smachined' name='sMachineCode' placeholder="请输入设备编号" value='' >
        <input type='text' id='doctor' name='visitDoc' style="display:none" placeholder="请输入医生姓名" value='' > 
</td>
JS代码:
$(function{
   $('input:radio[name="choice"]').change(function(){

            var v = $(this).val();

            if (v =="2"){

            $("#doctor").show();

            $("#smachined").hide(); 

            }else{

            $("#doctor").hide();

            $("#smachined").show();

            }

            });
});