当前位置: 技术问答>java相关
关于JSP菜单实现的问题?
来源: 互联网 发布时间:2015-04-27
本文导语: 有两张表,A表和B表,其中A表的主键是B表的外键,我现在想在一个下拉菜单中动态的显示A表中的主键(当主键的值增加时也能自动的增加),不知道该怎么作,请指教,最好能写一下实现的代码并能注释一下,谢谢...
有两张表,A表和B表,其中A表的主键是B表的外键,我现在想在一个下拉菜单中动态的显示A表中的主键(当主键的值增加时也能自动的增加),不知道该怎么作,请指教,最好能写一下实现的代码并能注释一下,谢谢!我是新手!
|
你是不知道怎么操作数据库吧?
假设A有两个字段:id name
假设A有两个字段:id name
|
var fatherList=new Array(2);
var aListValue = new Array(2);
fatherList[0]="a";aListValue[0] = new Array("1","2");
fatherList[1]="d";aListValue[1] = new Array("456");
var nCurIndex = null;
function setupList()
{
if (nCurIndex != document.frmtest.name1.selectedIndex)
{
var sValue = document.frmtest.name1.selectedIndex;
var i;
//remove existing list
for (i=document.frmtest.name2.options.length-1; i >=0 ; i--)
document.frmtest.name2.options.remove(i);
for (i=0; i