日期:2014-05-17 浏览次数:20867 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> <script type="text/javascript"> function radBox(v) { if (v == 0) { document.getElementById('msgbox').style.display = 'block'; } else { document.getElementById('msgbox').style.display = 'none'; } } </script> </head> <body> <table width="665" height="37" border="1" cellpadding="0" cellspacing="0"> <tr> <td width="143"><label> <input type="radio" name="radId" value="1" checked="checked" onclick="radBox(1);" /> 是</label> <label> <input type="radio" name="radId" value="0" onclick="radBox(0);" /> 否</label></td> <td width="51"><span id="msgbox" style="display:none;"> <label> <input type="radio" name="radId" value="1" /> 1</label> )<br/> <label> <input type="radio" name="radId" value="2" /> 2</label> )<br/> </span></td> </tr> </table> </body> </html>