Form element value acquisition method JS and Java Way simple example _javascript skill

Source: Internet
Author: User

We all know that we use a variety of input forms when submitting form. But not every type of input form is very simple to get in the document.getElementById way. Some combinations of the form are similar to checkbox or radio or select how do we get and get the submitted arguments in the server with JavaScript?

Say more useless, on the code:

Jsp-html Code:

<form action= "input.do" name= "FORMKK" > <table> <tbody> <tr> <td>text:</td> <td> <input type= "text" name= "text" > </td> </tr> <tr> <td>password:</ td> <td> <input type= "password" name= "pass" > </td> </tr> <tr> <td>rad io:</td> <td> <input type= "Radio" name= "Xingbie" value= "1" > Male <input type= "Radio" name= "Xin" Gbie "value=" 2 "> Women </td> </tr> <tr> <td>checkbox:</td> <td> soccer: <i Nput type= "checkbox" name= "Hobby" value= "1"/> basketball: <input type= "checkbox" name= "Hobby" value= "2"/> Bounce ball: <i Nput type= "checkbox" name= "Hobby" value= "3"/> Bucket ball: <input type= "checkbox" name= "Hobby" value= "4"/> </td&gt 
  ; </tr> <tr> <td>hidden:</td> <td> <input type= "hidden" value= "123" Name= "hidden"/& 
Gt 
 </td> </tr> <tr> <td>option:</td> <td> <select name= "opt" id= "opt" > &LT;OPTION&G 
  t;1</option> <option>2</option> <option>3</option> <option>4</option> </select> </td> </tbody> </table> <input type= "button" value= "Submit" onclick= "Javasc  Ript:check () "/> </form>

Javascript:

function Check () { 
   
  var radio = document.getelementsbyname ("Xingbie"); 
  var checkbox = Document.getelementsbyname ("hobby"); 
  var select = document.getElementById ("opt"); 
 
  Get select Tag 
  var index = select.selectedindex; 
  var text = Select.options[index].text; 
  var value = Select.options[index].value; 
   
  Gets the radio label for 
  (Var i=0;i<xingbie.length;i++) { 
if (Xingbie.item (i). checked) { 
  var val = Xingbie.item (i). getattribute ("value"); 
  break; 
Continue; 
  } 
  Gets the checkbox label for 
  (Var i=0;i 
 

Java:

string[] Hobbys = request.getparametervalues ("hobby"); CheckBox 
String text = Request.getparameter ("text");//text 
String password = Request.getparameter (" Password "); Password 
String Xingbie = Request.getparameter ("Xingbie");  Radio 
Request.getparameter ("hidden"); 

The above is a small series for you to bring the form element value to obtain the way JS and Java way of a simple example of all content, I hope that we support cloud Habitat Community ~

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.