Bir select öğesini seçin

2 Cevap php

I need to select a specific item of a combobox in my page when i click in a button. I am using php and javascript code in my page.

Aslında ben "onclick" düğmesinin bir javascript işlevi arıyorum. Ama yine de bunu yapmak için doğru komutu alamadım.

Örnek:

<select id="TEST">
<option> a</option>
<option> b</option>
<option> c</option>
</select>

i düğmesini tıkladığınızda madde b göstermek istiyorum.

2 Cevap

<select id="select1">
    ...
</select>
<button onclick="chooseItem('select1', 1)">
<script type="text/javascript">
    function chooseItem(id, index){
        var selectElement = document.getElementById(id);
        selectElement.selectedIndex = index;
    }
</script>

veya jQuery ile:

<select id="select1">
    ...
</select>
<button id="button1">
<script type="text/javascript">
   $(document).ready(function(){
       $("#button1").click(function(e){
           $("#select1").each(function(){
               this.selectedIndex = 1;
           });
       });
   });

});

selectedIndex özelliğini kullanın.