我在一组中有两个单选按钮。如果您通过 html 中的“检查”访问该页面,则会检查第一个。
我想使用javascript来调整一些css(通过javascript,而不是通过添加一个类)。So if the first is selected, I want a certain class to get a display:none
and an other class a display:block
, but when the second radio button is selected, I want the the same as with the other radio button only and vice versa.
我的html是:
<li><input type="radio" name="kosten" id="maand" checked><label for="maand">per maand</label></li>
<li><input type="radio" name="kosten" id="jaar" ><label for="jaar">per jaar</label></li>
我尝试了一些 jquery,但我真的不擅长它。
if ($('input#maand').is(':checked'){
$('.bedrag-jaar').css('display', 'none');
}
div
我想出现和消失的 s 的一些例子。
<li><strong><span class="bedrag-maand">some text</span> <span class="bedrag-jaar">some other text</span></strong></li>
你知道我怎么能让这个工作吗?