JavaScript:如何根据选择更改表单动作属性值?
Posted
技术标签:
【中文标题】JavaScript:如何根据选择更改表单动作属性值?【英文标题】:JavaScript: how to change form action attribute value based on selection? 【发布时间】:2010-12-27 21:23:59 【问题描述】:我正在尝试根据从下拉菜单中选择的值更改表单操作。
基本上,html 看起来像这样:
<form class="search-form" id="search-form" method="post" accept-charset="UTF-8" action="/search/user">
<select id="selectsearch" class="form-select" name="selectsearch">
<option value="people">Search people</option>
<option value="node">Search content</option>
</select>
<label>Enter your keywords: </label>
<input type="text" class="form-text" value="" size="40" id="edit-keys" name="keys" maxlength="255" />
<input type="submit" class="form-submit" value="Search" id="edit-submit" name="search"/>
</form>
如果选择“people”(默认情况下),则操作应为“/search/user”,如果选择内容,则操作应为“/search/content”
我仍在四处寻找,但无法找到如何做到这一点。
【问题讨论】:
【参考方案1】:$("#selectsearch").change(function()
var action = $(this).val() == "people" ? "user" : "content";
$("#search-form").attr("action", "/search/" + action);
);
【讨论】:
这比我尝试的要好得多...谢谢 工作完美。谢谢。我更新了此代码以更改提交操作而不是表单更改操作。 如果您为移动设备设计,最好在“提交时”更改操作以解决性能问题。在下面检查我的答案。 使用prop
而不是attr
。示例 = $("#search-form").prop ("action", "/search/" + action);
【参考方案2】:
如果您只想更改表单的操作,我更喜欢在提交表单时更改操作,而不是在输入更改时更改操作。它只触发一次。
$('#search-form').submit(function()
var formAction = $("#selectsearch").val() == "people" ? "user" : "content";
$("#search-form").attr("action", "/search/" + formAction);
);
【讨论】:
【参考方案3】:在javascipt中简单易用
<script>
document.getElementById("selectsearch").addEventListener("change", function()
var get_form = document.getElementById("search-form") // get form
get_form.action = '/search/' + this.value; // assign value
);
</script>
【讨论】:
【参考方案4】:最好用
$('#search-form').setAttribute('action', '/controllerName/actionName');
而不是
$('#search-form').attr('action', '/controllerName/actionName');
所以,根据 trante 的回答,我们有:
$('#search-form').submit(function()
var formAction = $("#selectsearch").val() == "people" ? "user" : "content";
$("#search-form").setAttribute("action", "/search/" + formAction);
);
使用setAttribute
可能会为您节省大量时间。
【讨论】:
为什么 DOMElementsetAttribute
会比使用 jquery attr
节省更多时间?【参考方案5】:
如果您想从纯 javascript 进行更改,请使用以下方法。与带有额外方法的 Ankush Kumar's 代码相同
function fn_one()
document.formname.action="https://google.com/search?q=form+submit+using+name";
function fn_two()
document.getElementsByName("formname")[0].action="https://google.com/search?q=form+submit+using+name+method+2";
function fn_three()
document.getElementById("formid").action="https://google.com/search?q=form+submit+using+ID";
<form name="formname" id="formid" action="google.com/search?q=" target="_blank">
<div>
<button type="button" onclick="fn_one()">Change By Name 1</button>
<button type="button" onclick="fn_two()">Change By Name 2</button>
<button type="button" onclick="fn_three()">Change By ID</button>
</div>
<div>
<button type="submit">Go To Google</button>
</div>
</form>
【讨论】:
【参考方案6】:您需要有表格吗? 如果没有,那么你可以使用这个:
<div>
<input type="hidden" value="ServletParameter" />
<input type="button" id="callJavaScriptServlet" onclick="callJavaScriptServlet()" />
</div>
使用以下 JavaScript:
function callJavaScriptServlet()
this.form.action = "MyServlet";
this.form.submit();
【讨论】:
this.form.submit();将没有任何意义,因为实际上没有任何形式,因此 - 无需提交以上是关于JavaScript:如何根据选择更改表单动作属性值?的主要内容,如果未能解决你的问题,请参考以下文章