[JavaScript] [양식 텍스트 상자 & 드롭다운 목록 상자 작업]

일단 Html.
<body>
    <form id="form1">
        <input type="type" value="111111" ></input>
        <input type="type" value="222222" ></input>
        <input type="type" value="333333" ></input>
        <input type="button" value="  " ></input>
    </form>

    <select name="edu" id="edu">
        <option value="  ">  ~~~</option>
        <option value="  ">  ~~~</option>
        <option value="  ">  ~~~</option>
        <option value="  ">  ~~~</option>
    </select>

    <select name="job" id="job">
        <option value="   ">   ~~~</option>
        <option value="  ">  ~~~</option>
        <option value="   ">   ~~~</option>
        <option value="  ">  ~~~</option>
    </select>

    <br/>

    <input type="button" value="js  " onclick="text5()"></input>
</body>

JS 작업 코드:
    <script type="text/javascript"> /* form         : type:     id:  ID name:  name  */ function text(){ //  ID form1     input   value  var elements = document.getElementById("form1"); var types = elements.getElementsByTagName("input"); for (var i = 0; i < types.length; i++) { alert(types[i].value); } } function text1(){ //       type button value  var elements = document.getElementById("form1"); var types = elements.getElementsByTagName("input"); for (var i = 0; i < types.length; i++) { if (types[i].type != 'button') { alert(types[i].value); } } } function text2(){ //   input      change   var elements = document.getElementById("form1"); var types = elements.getElementsByTagName("input"); for (var i = 0; i < types.length; i++) { var input = types[i]; input.onchange = function(){ alert(this.value); } } } function text3(){ //           var selects = document.getElementById("edu"); var edus = selects.getElementsByTagName("option"); for (var i = 0; i < edus.length; i++) { alert(edus[i].value); } } function text4(){ //           //  select ID   value // web               ,web   select name       var option1 = document.getElementById("edu"); alert(option1.value); } function text4(){ } </script>

좋은 웹페이지 즐겨찾기