jquery 下拉选择值

发布于 2024-09-28 11:02:46 字数 831 浏览 1 评论 0原文

   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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卷耳 2024-10-05 11:02:46

尝试将其放在下拉列表下方:

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

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

Try putting this below you dropdown:

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

Let's know if that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文