0

HTML と JS は初めてです。同じページで送信を押した後、テキストボックスとドロップダウンの値を保持したい

<!DOCTYPE html>
<html>
  <body>
    <script>    
    function tab()
    {
        //var t=document.getElementById("test").value;
        //document.getElementById("run").value = t;
    //t=> You send it to XML
    var test_a = document.getElementById("test");
    var selectedText = test_a.options[test_a.selectedIndex].text;
    document.getElementById("run").value = selectedText;
    }
</script>

<form name="myform" action="test.html" method="get">

<select id="test" onchange="tab()">

    <option value="-1">--select--</option>

    <option value="IN" >INDIA</option>

    <option value="BZ">BRAZIL</option>

</select>

<input type="text" name="run" id="run"/>

<input type="Submit">

 </form>

 </body>

 </html>
4

1 に答える 1

0

それは同じでしょう、フィドルで見てくださいHere

于 2013-10-05T13:41:55.483 に答える