本文介绍了如何将值从 javascript 传递到 struts2 中的 java 类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
function redirect(id){
alert(id);
document.forms["AddToCart"].submit();
}
这是我的 JavaScript.如何将id"的值传递给 AddToCart.java.我正在使用 struts2 框架.
This is my javascript. How can i pass the value of 'id' into AddToCart.java. I am using struts2 framework.
推荐答案
您可以将值存储在表单内的隐藏字段中,以便在提交表单时将值发送到 Action.
You can store the value in a hidden field inside your form and so when the form is submitted the value will be sent to Action.
<form name="AddToCart" ... >
...
<input type="hidden" id="myid"/>
.....
</form>
然后
function redirect(id){
document.getElementById('myid').value = id;
document.forms["AddToCart"].submit();
}
这篇关于如何将值从 javascript 传递到 struts2 中的 java 类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!