onclick で JavaScript 関数から変数を取得した後、JSP ページを送信しようとしています。それを行う方法はありますか?
Javascript:
function sub(str)
{
alert(str); //To test if I am getting the variable on this function
}
JSP の内容:
<c:forEach items="${mybean.flag}" var="element">
<a href="javascript:sub('${element.CASE}');">${element.CASE}</a>
</c:forEach>
<%String w = request.getParameter("str");
if(!w.equals("null") {
Call a java bean to do further manipulations
}
%>