jspにあるボタンクリックイベントでjavascript関数のアクションクラスのメソッドを呼び出そうとしています。Struts2を使用しています。これを行う方法を教えてください。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 ();
}