jquery 下拉选择值
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
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>
Now when i want to edit ,i know the previous value stored .And lets say that as Asia/Bangkok how to get this value selected
an example
var edit_val="Asia/Bangkok"
$("#timezone selected val[edit_val]")//Sumthing like this
In the drop downlist i want this value to be selected
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其放在下拉列表下方:
让我们知道这是否有帮助。
Try putting this below you dropdown:
Let's know if that helps.