|
热门文章 |
|
|
|
|
根据单选框改变的文本框 |
来源:中国站长天空 更新时间:2009/12/2 23:34:42 阅读次数: 我要投稿 |
|
<!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> <title>根据单选框改变的文本框</title> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <!--把下面代码加到<head>与</head>之间--> <script language="javascript"> <!-- function changeItem(i) { var k = 2; for(var j = 0;j < k;j++){ if(j == i){ document.all["Div" + j].style.display = "block"; } else{ document.all["Div" + j].style.display = "none"; } } } --> </script> </head> <body> <!--把下面代码加到<body>与</body>之间--> <input type="radio" name="region" value="1" checked onClick="return changeItem(0);">单选1 <input type="radio" name="region" value="2" onClick="return changeItem(1);">单选2<br> <div id="Div0" style="display:block;">Item1:<input type="text" name="textfield"></div> <div id="Div1" style="display:none;">Item2:<input type="text" name="textfield2"></div> </body> </html> |
|
上一篇文章: 多表单checkbox全选、反选、不全选效果下一篇文章: 统计多行文本框textarea的输入字数 |
|
|