默认选中动态单选按钮值 1
Dynamic radio button value 1 checked by default
我用一段代码来显示一些单选按钮,但是这段代码和值是动态加载的,所以我无法在 html 中添加 checked。
单选按钮之间的区别在于值。
有没有办法让默认选择值1?
代码:
<div class="input-box">
<strong><?php echo $this->__('Would you recommend this product to a friend?') ?></strong>
<?php foreach ( $this->getOptions() as $option ): ?>
<label class="recommend">
<input type="radio" name="recommend" id="recommend_field" class="radio-gender" value="<?php echo $option['value'] ?>"<?php if ($option['value'] == $value) echo ' checked="checked"' ?>><?php echo $this->__($option['label']) ?></input>
</label>
<?php endforeach ?>
</div>
使用jquery检查收音机button.Syntax是否相同:
jQuery("#radio_1").attr('checked', 'checked');
请尝试使用以下代码 select 页面加载时的第一个单选按钮
jQuery(document).ready(function(){
jQuery("input:radio[name=recommend]:first").attr('checked', true);
})
我用一段代码来显示一些单选按钮,但是这段代码和值是动态加载的,所以我无法在 html 中添加 checked。
单选按钮之间的区别在于值。
有没有办法让默认选择值1?
代码:
<div class="input-box">
<strong><?php echo $this->__('Would you recommend this product to a friend?') ?></strong>
<?php foreach ( $this->getOptions() as $option ): ?>
<label class="recommend">
<input type="radio" name="recommend" id="recommend_field" class="radio-gender" value="<?php echo $option['value'] ?>"<?php if ($option['value'] == $value) echo ' checked="checked"' ?>><?php echo $this->__($option['label']) ?></input>
</label>
<?php endforeach ?>
</div>
使用jquery检查收音机button.Syntax是否相同:
jQuery("#radio_1").attr('checked', 'checked');
请尝试使用以下代码 select 页面加载时的第一个单选按钮
jQuery(document).ready(function(){
jQuery("input:radio[name=recommend]:first").attr('checked', true);
})