我试图在jsp中的按钮单击事件上调用javascript函数的action类中的一个方法。我正在使用struts 2。你能告诉我该怎么做吗?ListAlgorithmAction 类中有一个函数,我想在用户单击提交按钮时调用它。
function alertselected (){
var x = document.getElementById ( "select_name" ).selectedIndex;
var y = document.getElementById ( "select_name" ).options;
var id = y [x].index;
redirect(id);
}
function redirect(x){
document.getElementById ( "param_ID" ).value = x;
document.forms ["./ListAlgorithmAction"].submit ();
}