我是网络开发的新手,我试图从互联网上寻找任何资源,但我仍然无法弄清楚我的问题......
=> 读取文本文件并生成选项...我的 test.jsp 页面
<tr>
<td>Select test : </td>
<td><select id="testname" name="testname" onchange="makeBox()">
while ((src = test.readLine()) != null){
param = "";
temp =src.split(":");
tempsize =temp.length;
if ((tempsize >2)){
int i;
for (i=2; tempsize>i ; i++){
if((temp[i].equals("null"))){
param = "";
}
else if ((i ==2) && (temp[i] != "null")){
param = temp[i];
}
else if ((i > 2)){
param = param + "," + temp[i];
}
}
}
%>
<option value="<%=param%>" name="<%=temp[0]%>"><%=temp[0]%></option>
<%
}
test.close();
%>
</select></td>
</tr>
当用户选择其中一个选项时,javascript将在输入文本框中生成相应的参数...(参数数量因每个测试而异)
前任。比方说
<option value="size,height,weight" name=apple>apple</option>
被选中。然后我希望我的页面显示 3 个文本框,例如....
<td> Enter size: </td>
<td><input type="text" id="size" name="size"></td>
<td> Enter height: </td>
<td><input type="text" id="height" name="height"></td>
<td> Enter wieght: </td>
<td><input type="text" id="weight" name="weight"></td>
我的尝试:
<script type="text/javascript">
function makeBox() {
var selected = document.getElementById('batchname');
for (var i=1, n=selected.options.length;i<n;i++){
if (selected.options[i].value){
var a = "<input type = 'text' name = '" + selected.options[i].value + "' id = '" + selected.options[i].value + "'>";
document.getElementById("inputBox").innerHTML = a;
}
}
};
</script>
我正在读取的文本文件:
Apple:A.B.C.D:size:colour
Banana:G.C.D.E:length
Pear:L.D.E.F:shape:weight:color
Orange:E.C.A.W:density:length:color:weight
Melon:E.P.D.A // no param
^ 不做任何事情...从选择框中发送多个值以创建多个输入框我是否根本错误?如果有更好的方法,请给我建议... :) 感谢您的帮助!