首页 > 编程 > JavaScript > 正文

用jquery方法操作radio使其默认选项是否

2019-11-20 22:18:59
字体:
来源:转载
供稿:网友
复制代码 代码如下:

<tr>
<th>是否映射:</th>
<td>
<input type="radio" name="sfys" class="radio" id="yes"
value="1"/><label for="yes">是</label>
<input type="radio" name="sfys" class="radio" id="no"
value="0"/><label for="no">否</label>
</td>
</tr>

用jquery方法操作,使其默认选项是否.
复制代码 代码如下:

$(function () {
var sfys = "<#if os??&&os.sfys??>${os.sfys}</#if>";
if (sfys == '1') {
$("#yes").attr('checked', 'checked');
} else {
$("#no").attr('checked', 'checked');
}
});
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表