取不到下拉框的值
发布网友
发布时间:2022-05-13 02:16
我来回答
共5个回答
热心网友
时间:2022-05-13 03:45
关于下拉框的取值网上有许多!
建议用JAVASCRIPT在叶面上取也好操作!
我引用一个你看看!
<table id="tableid"><tr><td>fdsfs</td></tr></table>
<select id="selectid" name="selectname" onchange="ShowandHide();">
<option value="1">show</option>
<option value="0">hide</option>
</select>
<SCRIPT LANGUAGE="JavaScript">
function ShowandHide()
{
var Type=document.getElementById('selectid')
if(Type.options[Type.selectedIndex].value == 1)
{
javascript:document.getElementById('tableid').style.display='inline';
}
else
{
javascript:document.getElementById('tableid').style.display='none';
}
}
</script>
祝你好运!
热心网友
时间:2022-05-13 05:03
<select name="key">
热心网友
时间:2022-05-13 06:38
<select name="name">
热心网友
时间:2022-05-13 08:29
你能不能把代码贴上啊,这让我们怎么看啊...我们看你JSP代码和servlet的得到的那块代码.