Getting error when using post method in form
问题 I am getting null when I am using post method while passing a form to the next page A repeat of this question link text <html> <head> Title <script> function callme() { alert("Hi"); alert(document.getElementById("prio").value); } </script> </head> <body> <FORM method="post" name="test"enctype="multipart/form-data" action="testjsp.jsp" > <select name="prio" id="prio"> <option>1</option> <option>2</option> </select> <input type="submit" value="Submit" onClick=callme();> </form> </body> </html>