我正在设计一个带有表单操作的JSP页面。
<form action="" method="post">
Username: <input type="textfield" name="username" />
Country : <input type="textfield" name="country" />
Url : <input type="textfield" name="Url" />
<input type="submit" value="Submit" />
</form>
我想在单击提交按钮并重定向到该URL时,在表单操作中设置用户给定的URL值。我怎样才能做到这一点?
答案 0 :(得分:3)
这可以很好地运作
<form action="" method="post" id="myForm">
Username: <input type="text" name="username" />
Country : <input type="text" name="country" />
Url : <input id="url" type="text" name="Url" />
<button onclick="doStuff();">Submit</button>
</form>
<script>
function doStuff(){
$('#myForm').attr('action', $('#url').val());
$('#myForm').submit();
}
</script>
不要忘记在代码中包含JQuery api:
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>