CopyRight © 2008-2009 JavaWind.Net Studio All Rights Reserved
Powered By JWind.BBS Vesion 1.0.0 Beta1
Processed in 8 ms,0 (Queries) Gzip enabled
粤ICP备07511478号
| 风信Java论坛 ›› J2EE/Java Web 讨论交流中心 ›› 单选框选中问题 | 登录 -> 注册 |
|
1F 单选框选中问题 miracle Post by : 2008-06-30 16:42:29.0
有N行,每行前面都有一个单选框,每一行都是文本框,我想实现随便点哪一个文本框,文本框所在行的单选按钮就被选中 |
|
2F 唧唧 Post by : 2008-06-30 16:45:31.0
好像只能一个一个文本框去写 onclick 事件
onclick="form1.xxx.checked=true;" |
|
3F 唧唧 Post by : 2008-06-30 16:52:11.0
<form method="post" action="" name="myForm">
<table> <tr> <td><input type="radio" id="typeRadio1" name="typeRadio" value="1" /></td> <td><input type="text" id="text1" name="text1" onclick="myForm.typeRadio[0].checked=true;" /></td> </tr> <tr> <td><input type="radio" id="typeRadio2" name="typeRadio" value="1" /></td> <td><input type="text" id="text2" name="text2" onclick="myForm.typeRadio[1].checked=true;" /></td> </tr> <tr> <td><input type="radio" id="typeRadio3" name="typeRadio" value="1" /></td> <td><input type="text" id="text2" name="text3" onclick="myForm.typeRadio[2].checked=true;" /></td> </tr> </table> </form> |
|
4F 唧唧 Post by : 2008-06-30 16:55:10.0
还有啊 这些不属于 jsp 的问题
属于 html 和 javascript ,以后与jsp无关的帖子 发到其他相关板块去 如:javascript/html/css 讨论交流中心 /forum.jspx?fid=3 |
| 风信Java论坛 ›› J2EE/Java Web 讨论交流中心 ›› 单选框选中问题 | 登录 -> 注册 |