我试图根据是否选中单选按钮来编写用于隐藏/显示描述的 jquery/JS 逻辑。如果在页面加载时选中单选按钮,我希望加载与该单选按钮关联的描述。但是必须选择/选中其中一个的默认值
我确实尝试使用 .change 编写代码并单击 ready() 中的方法。但是没有成功
我只有两个单选按钮,我不是 Javascript/jquery 人。任何输入表示赞赏。这是一个例子
<div id="ServiceSelection">
<input type="radio" name="Service" checked="Checked" value="B"> Option 1
<br>
<input type="radio" name="Service" value="P"> Option 2
<br>
<div id="DivB" style="display:none" class="desc">B Description goes here </div>
<div id="DivP" style="display:none" class="desc">P Description goes here </div>
</div>
编辑DIV:
<div id="ServiceSelection">
<input type="radio" name="Service" checked="Checked" value="B"> Option 1
<br>
<div id="DivB" style="display:none" class="desc">B Description goes here </div>
<input type="radio" name="Service" value="P"> Option 2
<br>
<div id="DivP" style="display:none" class="desc">P Description goes here </div>
</div>
提前谢谢