关于JSP 的 下拉菜单的问题
在JSP页面上有个下拉菜单,代码如下:<selectname="tfeestype"id="tfeestype"><optionvalue="1">派员单位付费</opt...
在JSP页面上有个下拉菜单 ,代码如下:
<select name="tfeestype" id="tfeestype" >
<option value="1">派员单位付费</option>
<option value="2">邀请单位(中方)</option>
<option value="3">邀请单位(外方)</option>
<option value="4">按合同付费</option>
<option value="5">其他付费方式</option>
</select>
现在想要在“选其他付费方式”的时候出现一个可以让用户自己填写的文本框, 重点是这个文本框的值能正确传过去, JS文件中获得数据的 代码是
var taskfeetype = document.getElementById('tfeestype');
var _feetype = taskfeetype.options[taskfeetype.selectedIndex].text;
求大家帮忙,有其他好的解决方法也行 展开
<select name="tfeestype" id="tfeestype" >
<option value="1">派员单位付费</option>
<option value="2">邀请单位(中方)</option>
<option value="3">邀请单位(外方)</option>
<option value="4">按合同付费</option>
<option value="5">其他付费方式</option>
</select>
现在想要在“选其他付费方式”的时候出现一个可以让用户自己填写的文本框, 重点是这个文本框的值能正确传过去, JS文件中获得数据的 代码是
var taskfeetype = document.getElementById('tfeestype');
var _feetype = taskfeetype.options[taskfeetype.selectedIndex].text;
求大家帮忙,有其他好的解决方法也行 展开
1个回答
展开全部
你这里应该有表单吧,提交的那头用request.getParameter("txtValue")就能得到文本框的值了
<BODY>
<form name="form1" method="post" action="****">
<select name="tfeestype" id="tfeestype" onchange="check(this)">
<option value="1">派员单位付费</option>
<option value="2">邀请单位(中方)</option>
<option value="3">邀请单位(外方)</option>
<option value="4">按合同付费</option>
<option value="5">其他付费方式</option>
</select>
</form>
</BODY>
<SCRIPT LANGUAGE="JavaScript">
function check(sel)
{
if(sel.value=="5")
{
var txt = document.createElement("input");
txt.name = "txtValue";
document.form1.appendChild(txt);
}
}
</SCRIPT>
<BODY>
<form name="form1" method="post" action="****">
<select name="tfeestype" id="tfeestype" onchange="check(this)">
<option value="1">派员单位付费</option>
<option value="2">邀请单位(中方)</option>
<option value="3">邀请单位(外方)</option>
<option value="4">按合同付费</option>
<option value="5">其他付费方式</option>
</select>
</form>
</BODY>
<SCRIPT LANGUAGE="JavaScript">
function check(sel)
{
if(sel.value=="5")
{
var txt = document.createElement("input");
txt.name = "txtValue";
document.form1.appendChild(txt);
}
}
</SCRIPT>
追问
有没有表单很重要吗? 我发现没有用到表单什么东西 我的这个列表是布局在TABLE 的一个列里面
追答
那你要传值,你怎么跳转的页面?
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询