如何把SQL数据库中 表的字段 和其他字段 用下拉菜单和文字显示 INSERT
如果我的SQL数据库中的表中的值如下ABCDEFGHIA1B1C1D1E1F1G1H1I1A2B2C2D2E2F2G2H2I2A3B3C3D3E3F3G3H3I3怎么做一...
如果我的SQL数据库中的表中的值如下
A B C D E F G H I
A1 B1 C1 D1 E1 F1 G1 H1 I1
A2 B2 C2 D2 E2 F2 G2 H2 I2
A3 B3 C3 D3 E3 F3 G3 H3 I3
怎么做一个下拉菜单 菜单的值 分别为 A A1 A2 A3
当我选择A 时 右边的表格出来 B C D E F G H I
当我选择A1时 右边的表格出来 B1 C1 D1 E1 F1 G1 H1 I1
......A2.. .............. B2 C2 D2 E2 F2 G2 H2 I2
........A3. .............. B3 C3 D3 E3 F3 G3 H3 I3
知道的帮忙下 追加50分
楼下没看到调用数据库 的过程啊
这样我要把所有的值都用手填上啊
能不能补充一下
帮忙做个调用的循环过程 展开
A B C D E F G H I
A1 B1 C1 D1 E1 F1 G1 H1 I1
A2 B2 C2 D2 E2 F2 G2 H2 I2
A3 B3 C3 D3 E3 F3 G3 H3 I3
怎么做一个下拉菜单 菜单的值 分别为 A A1 A2 A3
当我选择A 时 右边的表格出来 B C D E F G H I
当我选择A1时 右边的表格出来 B1 C1 D1 E1 F1 G1 H1 I1
......A2.. .............. B2 C2 D2 E2 F2 G2 H2 I2
........A3. .............. B3 C3 D3 E3 F3 G3 H3 I3
知道的帮忙下 追加50分
楼下没看到调用数据库 的过程啊
这样我要把所有的值都用手填上啊
能不能补充一下
帮忙做个调用的循环过程 展开
2个回答
展开全部
<!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>
var currentObj = null;
function check(obj){
if (currentObj) currentObj.style.display="none";
currentObj=document.getElementById(obj.options[obj.selectedIndex].value);
if (currentObj)currentObj.style.display="";
}
</script>
</head>
<body>
<select name="select" id="select" style="float:left;" onchange="check(this)">
<option value="">选择</option>
<option value="A">A</option>
<option value="A1">A1</option>
<option value="A2">A2</option>
<option value="A3">A3</option>
</select>
<table id="A" style="float:left; display:none;">
<tr>
<th scope="col"> B</th>
<th scope="col"> C</th>
<th scope="col"> D</th>
<th scope="col"> E</th>
<th scope="col"> F</th>
<th scope="col"> G</th>
<th scope="col"> H</th>
<th scope="col"> I</th>
</tr>
</table>
<table id="A1" style="float:left; display:none;">
<tr>
<th scope="col"> B1</th>
<th scope="col"> C1</th>
<th scope="col"> D1</th>
<th scope="col"> E1</th>
<th scope="col"> F1</th>
<th scope="col"> G1</th>
<th scope="col"> H1</th>
<th scope="col"> I1</th>
</tr>
</table>
<table id="A2" style="float:left; display:none;">
<tr>
<th scope="col"> B2</th>
<th scope="col"> C2</th>
<th scope="col"> D2</th>
<th scope="col"> E2</th>
<th scope="col"> F2</th>
<th scope="col"> G2</th>
<th scope="col"> H2</th>
<th scope="col"> I2</th>
</tr>
</table>
<table id="A3" style="float:left; display:none;">
<tr>
<th scope="col"> B3</th>
<th scope="col"> C3</th>
<th scope="col"> D3</th>
<th scope="col"> E3</th>
<th scope="col"> F3</th>
<th scope="col"> G3</th>
<th scope="col"> H3</th>
<th scope="col"> I3</th>
</tr>
</table>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
var currentObj = null;
function check(obj){
if (currentObj) currentObj.style.display="none";
currentObj=document.getElementById(obj.options[obj.selectedIndex].value);
if (currentObj)currentObj.style.display="";
}
</script>
</head>
<body>
<select name="select" id="select" style="float:left;" onchange="check(this)">
<option value="">选择</option>
<option value="A">A</option>
<option value="A1">A1</option>
<option value="A2">A2</option>
<option value="A3">A3</option>
</select>
<table id="A" style="float:left; display:none;">
<tr>
<th scope="col"> B</th>
<th scope="col"> C</th>
<th scope="col"> D</th>
<th scope="col"> E</th>
<th scope="col"> F</th>
<th scope="col"> G</th>
<th scope="col"> H</th>
<th scope="col"> I</th>
</tr>
</table>
<table id="A1" style="float:left; display:none;">
<tr>
<th scope="col"> B1</th>
<th scope="col"> C1</th>
<th scope="col"> D1</th>
<th scope="col"> E1</th>
<th scope="col"> F1</th>
<th scope="col"> G1</th>
<th scope="col"> H1</th>
<th scope="col"> I1</th>
</tr>
</table>
<table id="A2" style="float:left; display:none;">
<tr>
<th scope="col"> B2</th>
<th scope="col"> C2</th>
<th scope="col"> D2</th>
<th scope="col"> E2</th>
<th scope="col"> F2</th>
<th scope="col"> G2</th>
<th scope="col"> H2</th>
<th scope="col"> I2</th>
</tr>
</table>
<table id="A3" style="float:left; display:none;">
<tr>
<th scope="col"> B3</th>
<th scope="col"> C3</th>
<th scope="col"> D3</th>
<th scope="col"> E3</th>
<th scope="col"> F3</th>
<th scope="col"> G3</th>
<th scope="col"> H3</th>
<th scope="col"> I3</th>
</tr>
</table>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询