jquery下拉选择值

时间:2010-10-20 14:13:57

标签: jquery jquery-selectors

   html += "<table><tr><td> <label for='id_first_name' ><b>Timezone:</b></label> </td>";
   html += '<td><select id="timezone" name="nodes" style="width:300px;margin:5px;">';
   {% for tz in all_timezones %}
   if('{{tz}}' == 'Asia/Calcutta')
        html+='<option value="{{tz}}" selected>{{tz}}</option>';
   else
        html += '<option value="{{tz}}">{{tz}}</option>';
   {% endfor %}
   html += '</select>';
   html += "</td> </tr>";
   </script>

现在,当我想要编辑时,我知道存储的先前值。并且可以说作为亚洲/曼谷如何选择此值  一个例子

    var edit_val="Asia/Bangkok"

    $("#timezone selected val[edit_val]")//Sumthing like this

     In the drop downlist i want this value to be selected

1 个答案:

答案 0 :(得分:0)

尝试将此信息放在下方:

<script type="text/javascript">
   document.getElementById('timezone').value = 'Asia/Bangkok';
</script>

让我们知道这是否有帮助。