怎样在JavaScript中提交表单
<formname="form1"action="adminselete_all.action"><tablealign="center"><tr><tdcolspan=...
<form name="form1" action="adminselete_all.action">
<table align="center">
<tr>
<td colspan="4" height="100px">
</tr>
<tr>
<td>请选择查询方式:</td>
<td>
<select id="value">
<option value="all">查询所有</option>
<option value="typeid">投诉类型编号</option>
<option value="type">投诉类型</option>
</select>
</td>
<td><input name="condition" type="text" value="请输入关键字"></td>
<td><input name="submit" type="button" value="查询" onclick="Select('value');"></td>
</tr>
</table>
</form>
<script type="text/javascript">
function Select(name){
var obj=document.getElementById(name);
if(obj.value == "all"){
alert("hehe");
document.form1.action = "ctTypeselect_all.action";
alert(document.form1.action);
document.form1.submit();
}
if(obj.value == "typeid"){
alert("haha");
form1.action = "ctTypeselect_typeid";
form1.submit();
}
if(obj.value == "type"){
alert("eee");
form1.action = "ctTypeselect_type";
form1.submit();
}
}
</script>
选择“all“时能打印出字符串,无法提交。
加入method="post"不行。我的提交按钮本来就是button名字是submit而已。蝴蝶说的那个”表单提交必须要有name属性“中的name只得的哪个name?
onsubmit()也不行。
写成URL不行。
另外:如果在document.form1.submit();后面输出任意字符串的话,不执行。
换成普通表单提交的话可以执行。不是后台的问题。
var obj=document.getElementById(name)获取到值了。而且,action也赋到form1中了。奇怪的是最后一句提交就是不执行
对了,问题里表单中的action是我测试用的。去掉的话,在js中也能获得。 展开
<table align="center">
<tr>
<td colspan="4" height="100px">
</tr>
<tr>
<td>请选择查询方式:</td>
<td>
<select id="value">
<option value="all">查询所有</option>
<option value="typeid">投诉类型编号</option>
<option value="type">投诉类型</option>
</select>
</td>
<td><input name="condition" type="text" value="请输入关键字"></td>
<td><input name="submit" type="button" value="查询" onclick="Select('value');"></td>
</tr>
</table>
</form>
<script type="text/javascript">
function Select(name){
var obj=document.getElementById(name);
if(obj.value == "all"){
alert("hehe");
document.form1.action = "ctTypeselect_all.action";
alert(document.form1.action);
document.form1.submit();
}
if(obj.value == "typeid"){
alert("haha");
form1.action = "ctTypeselect_typeid";
form1.submit();
}
if(obj.value == "type"){
alert("eee");
form1.action = "ctTypeselect_type";
form1.submit();
}
}
</script>
选择“all“时能打印出字符串,无法提交。
加入method="post"不行。我的提交按钮本来就是button名字是submit而已。蝴蝶说的那个”表单提交必须要有name属性“中的name只得的哪个name?
onsubmit()也不行。
写成URL不行。
另外:如果在document.form1.submit();后面输出任意字符串的话,不执行。
换成普通表单提交的话可以执行。不是后台的问题。
var obj=document.getElementById(name)获取到值了。而且,action也赋到form1中了。奇怪的是最后一句提交就是不执行
对了,问题里表单中的action是我测试用的。去掉的话,在js中也能获得。 展开
6个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询