我有一个基于Spring Web模型 - 视图 - 控制器(MVC)框架的项目。 Spring Web模型 - 视图 - 控制器(MVC)框架的版本是3.2.8。 我想在提交按钮上更改表单操作。所以这是我的代码,但根本没有改变任何东西!
<script type="text/javascript">
$('#awardProductsButton').click(function(){
$('#devicesFormId').attr('action', 'test');
});
</script>
<form:form commandName="devicesForm" name="devicesForm" id="devicesFormId" method="post"
action="${contextPath}/newdesign/manage/devices/${devicesForm.devices.id" htmlEscape="yes" enctype="multipart/form-data">
<button id="awardProductsButton" class="btn btn-primary" type="submit">AWARD product/s</button>
</form:form>
我也试过
$('#awardProductsButtonId').submit(function(event){
alert ('test');
event.preventDefault();
$('#deviceFormId').attr('action', '${contextPath}/newdesign/manage/device/${deviceForm.device.id}');
});
但即使警报也没有出现
答案 0 :(得分:1)
您只需要event.preventDefault()
和.submit
read-more
<script type="text/javascript">
$('#devicesFormId').submit(function(event){
event.preventDefault()
$('#devicesFormId').attr('action', 'test');
//$(this).attr('action', 'test');
});
</script>