Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
331 views
in Technique[技术] by (71.8m points)

java - calling javascript function on click of button in JSP

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

if you are using the script in separate page be sure that the script file is included in the head of the page , but if the script in the same page you have to put this script before that button.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...