HTML - Put SELECT tag content into INPUT type = "text"

51,910

Solution 1

You can add JavaScript directly into the button:

<input type="button" onclick="
    var s = this.form.elements['Cities'];
    this.form.elements['SelectedCity'].value =
      s.options[s.selectedIndex].textContent">

Solution 2

 <script type="text/javascript">
    function OnDropDownChange(dropDown) {
        var selectedValue = dropDown.options[dropDown.selectedIndex].value;
        document.getElementById("txtSelectedCity").value = selectedValue;
    }
 </script>

        <form action = "">
            <select name = "Cities" onChange="OnDropDownChange(this);">
              <option value="----">--Select--</option>
              <option value="roma">Roma</option>
              <option value="torino">Torino</option>
              <option value="milan">Milan</option>
            </select>
            <br/>
            <br/>
            <input type="button" value="Test">
            <input type="text" id="txtSelectedCity" name="SelectedCity" value="" />
        </form>

Solution 3

In fact you don't need any JS to do that, simply HTML can do it for you as follows:

<form action="a.php" method="post">
  <select name = "Car">
    <option value="BMW">BMW</option>
    <option value="AUDI">AUDI</option>
  </select>
  <input type="submit" value="Submit">
</form>
Share:
51,910
mouthpiec
Author by

mouthpiec

Updated on April 08, 2020

Comments

  • mouthpiec
    mouthpiec about 4 years

    I have a form in a webpage where I would like to put the selected item in a drop down list into a testbox. The code I have till now is the following:

                <form action = "">
                    <select name = "Cities">
                      <option value="----">--Select--</option>
                      <option value="roma">Roma</option>
                      <option value="torino">Torino</option>
                      <option value="milan">Milan</option>
                    </select>
                    <br/>
                    <br/>
                    <input type="button" value="Test">
                    <input type="text" name="SelectedCity" value="" />
                </form>
    

    I think I need to use javascript .... but any help? :-)

    thanks