首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

批改时单选框的自己选择

2012-11-05 
修改时单选框的自己选择td width15%性别:/tdtd width15%input typeradio nameCEmpSex

修改时单选框的自己选择
<td width="15%">
性别:
</td>
<td width="15%">
<input type="radio" name="CEmpSex" value="1" checked="checked" id="sex1">男
<input type="radio" name="CEmpSex" value="0" id="sex0">女
<script type="text/javascript">
document.getElementById("sex${emp.CEmpSex}").checked=true;
</script>
</td>

热点排行