How to pass the value from the javascript to servlet?

Need to pass a value from JavaScript to a servlet page

  • How do I pass a value from JavaScript code to a servlet page?

  • Answer:

    As per my understanding , Create a hidden input field , set the value and submit to the action and get the hidden field value from servlet. This shows a kick-off example , you can modify it according to your needs : HTML Form : <form name="myForm"> <input type=hidden name="hiddenValue"/> <input type="submit" value="Submit" name="buttonSubmit" onclick="customSubmit(10)"/> </form> Script : <script> function customSubmit(someValue){ document.form1.hiddenValue.value = someValue; document.form1.submit(); } </script> You would user http://download.oracle.com/javaee/5/api/javax/servlet/ServletRequest.html#getParameter%28java.lang.String%29 to get this value from servlet .

Coder_sLaY at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

With a field as follows: <INPUT TYPE="HIDDEN" NAME="variableName" VaLUE=""> Then in Javascript you can do: document.form.variableName.value="value"; form.submit(); and the JSP can evaluate the param "variableName". Remember though, that a Parameter is always a String (or an array of strings if accessed through a different method) so you will need a way to transform this string to what you want, if you want something other than a String (e.g. an Integer). Bt to tell you the truth I am not sure what you by a null value in javascript. Don't forget that anything that the JSP reads from the params, must then turn around and insert the value back into the hidden field to be read by the javascript on the client (or actually modify the javascript in the JSP before returning the html to the client).

Karan Shah

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.