我正在尝试在表单上实现type =“button”,而不是通过doPost方法处理信息,使用doGet方法处理表单(主要是为了能够正确更新URL) 。该规范使得无法使用type =“submit”或document.form1.submit(),因为我不能指向doPost方法。
我试图通过首先提交表单来解决这个问题,然后在按钮点击上重定向URL(反之亦然),但是我很难解决HttpServletRequest问题,因为我需要使用HttpServletRequest来自doGet方法中的表单提交。
有没有办法在按钮点击时使用ajax将当前表单数据转换为HttpServletRequest?我是ajax的新手,不确定正确的语法等等。
以下是我到目前为止用HTML收集的简短版本:
<form id="form1" method="post" action="">
<div>
<input id="edit" type="button" name="edit" value="Edit" disabled="true" onClick="window.location.href='/new'"></input>
</div>
</form>
<script type="text/javascript">
$(document).ready(function() {
$("#edit").click(function() {
$.ajax({
type:
url: '/new',
data:
success:
error:
dataType:
});
});
});
</script>
答案 0 :(得分:0)
使用以下正确的代码提交GET表单:
<form id="form1" method="get" action="">
<div>
<input id="edit" type="button" name="edit" value="Edit" disabled="true" onClick="window.location.href='/new'"></input>
</div>
</form>
<script type="text/javascript">
$(document).ready(function() {
$("#edit").click(function() {
$.ajax({
type:
url: '/new',
data:
success:
error:
dataType:
});
});
});
</script>