变量URL按html联系表单的值重定向

时间:2017-08-21 10:35:47

标签: javascript jquery html

由于CRM的要求,我必须处理一个非常基本的html联系表格(简短版本):

<form id="contact_form" method="POST" name="contact_form">
<p><strong>Select the white paper you would like to have:</strong></p>
<label for="paper" class="mandatory">
  <span>White paper<select id="paper" name="paper" required>
    <option selected="selected" value="">-Please select-</option>
    <option value="A">A</option>
    <option value="B">B</option>
    <option value="C">C</option>
  </select>
</label>
<input id="redirect_url" type="hidden" name="redirect_url" value="" />
<input class="download" onclick="submit_form();" type="submit" value="Download" />
</form>

是否有可能将变量写入redirect_url指定的value

A =“http://example.com/a”/ B =“http://example.com/b”等。

我应该尝试jQuery var还是document.getElementById

非常基本的问题,我知道,但我最近开始了对Javascript的抱负。

1 个答案:

答案 0 :(得分:0)

jQuery的:

var newURL = "http://example.com/b";
$("#redirect_url").val(newURL);

使用Javascript:

var newURL = "http://example.com/b";
document.getElementById("redirect_url").value = newURL;