使用参数中的两个值提交表单

时间:2013-04-11 13:00:07

标签: javascript html

我想在使用javascript提交表单时发送值。由于一些编程限制,我无法使用函数。那么我可以像这样在一个参数中给出两个值吗?

<form name="editDelete" ...>
<input type="hidden" name="theParam"/>
 ...

<a href="#" ... onclick="document.editDelete.theParam.value = 'the value'; document.editDelete.submit();">Test</a>

或者有没有办法在<a href>标签中使用单个命令提交表单发送值?

2 个答案:

答案 0 :(得分:1)

尝试这个最终解决方案;

<form id="editDelete" ...>
<input type="hidden" id="theParam" name="theParam"/>

<a href="#" onclick="document.getElementById('theParam').value = 'thee value'; document.getElementById('editDelete').submit();">Test</a>

答案 1 :(得分:0)

你能在表格中使用GET方法吗? here is an example

<A HREF="../form.html?value1=West&value2=East>2 values</A>