在 servlet/jsp 中选择时,如何获取与特定选项值相关的文本框的值,因为我想将其放入数据库中。例如,当我选择红色选项时,它是相关的文本框(其中将有一个默认值)将被激活或出现。我知道要获取所选选项的值,但我不知道要获取其相关选项的值。有没有其他方法可以做到这一点..??有没有人可以帮助我..!!! ??
<html>
<head>
<script type="text/javascript">
function CheckColors(val)
{
var element=document.getElementById('Color');
var element1=document.getElementById('Dolor');
var element2=document.getElementById('Polor');
element.style.display='none';
element1.style.display='none';
element2.style.display='none';
if(val=='others')
{
element.style.display='block';
}
else if(val=='red')
{
element1.style.display='block';
}
else if(val=='blue')
{
element2.style.display='block';
}
}
</script>
</head>
<body>
<select name="color" onchange='CheckColors(this.value);'>
<option>pick a color</option>
<option value="red">RED</option>
<option value="blue">BLUE</option>
<option value="others">others</option>
</select>
other:<input type="text" placeholder="other" name="Color" id="Color" style='display:none;'/>
red:<input type="text" placeholder="red" name="Dolor" id="Dolor" style='display:none;'/>
blue:<input type="text" placeholder="blue" name="Polor" id="Polor" style='display:none;'/>
</body>
</html>