如何将值从 javascript 传递到 struts2 中的 java 类? 这是类似于我想要的链接。但是它对我不起作用。我试过这样的事情。在jsp中隐藏的Struts标签是
function redirect(id)
{
window.alert("Hello"+id);
document.getElementById('param_ID').value=id;
document.forms["./ListAlgorithmAction"].submit();
}
在我的动作类中,我为 param_ID 声明了 getter 和 setter。但它返回 null。
请帮忙。谢谢你。