JavaScript的 – 基于select更改表单操作?
我试图根据下拉菜单中选定的值更改表单操作…
基本上,这个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>
如果select了“人物”(默认情况下),动作应该是“/ search / user”,如果select了内容,动作应该是“/ search / content”
我仍然在四处搜寻,但一直没能find如何做到这一点…
$("#selectsearch").change(function() { var action = $(this).val() == "people" ? "user" : "content"; $("#search-form").attr("action", "/search/" + action); });
如果你只想改变表单的行为,我宁愿改变表单提交的行为,而不是改变input。 它只发射一次。
$('#search-form').submit(function(){ var formAction = $("#selectsearch").val() == "people" ? "user" : "content"; $("#search-form").attr("action", "/search/" + formAction); });
需要你有一个表格?
如果没有,那么你可以使用这个:
<div> <input type="hidden" value="ServletParameter" /> <input type="button" id="callJavaScriptServlet" onclick="callJavaScriptServlet()" /> </div>
使用以下JavaScript:
function callJavaScriptServlet() { this.form.action = "MyServlet"; this.form.submit(); }