I have a javascript function in jsp page like this:
function shutDownall(){
alert(document.forms[0].Name.value);
var app_nm=document.forms[0].Name.value;
alert(app_nm);
document.forms[0].action="<%=request.getContextPath()%>/controller?eventName=shutDownall&appname=" +app_nm;
document.forms[0].submit();
return true;
}
and a button like this which calls javascript function:
<button type="button" onclick="javascript:shutDownall();">shutdown servers</button>
where the javascript function is calling a method declared in action class. And button calls the javascript function calling java method. But when i click the shutdown server button nothing happens, not able to debug it. please help.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…