将一个元素移至 DropdownList 中的第一个元素

发布于 2024-10-19 19:41:49 字数 591 浏览 1 评论 0原文

我列出了一个城市的townsForLanding,如下所示:

<select id="townid" name="townid">
 <option selected="selected" value=""><s:text name="Choose One"/></option>
 <s:iterator value="townsForLanding">
  <option value="<s:property value="id"/>" <s:if test="id == townid">selected="selected" </s:if>>
  <s:property value="name"/></option>
 </s:iterator>
</select>

城镇的名称之一是“Central”。我使用 struts2 从数据库中获取该列表。我希望名为“Central”的城镇应该位于下拉列表中的第一个(实际上是在“选择一个”之后)。(解决方案可能使用 jQuery 和 JavaScript)

我该怎么做?

I am listing townsForLanding for a city as like that:

<select id="townid" name="townid">
 <option selected="selected" value=""><s:text name="Choose One"/></option>
 <s:iterator value="townsForLanding">
  <option value="<s:property value="id"/>" <s:if test="id == townid">selected="selected" </s:if>>
  <s:property value="name"/></option>
 </s:iterator>
</select>

One of the name of a town is 'Central'. I get that list from database with struts2. I want the town with name 'Central' should be at the first(actually after 'Choose one') at drop-down-list.(Solution maybe with jQuery and JavaScript)

How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

如若梦似彩虹 2024-10-26 19:41:49

例如:

$('option:contains("Central")').insertAfter('select option:first-child');

演示:
http://jsfiddle.net/x4bMa/

for example:

$('option:contains("Central")').insertAfter('select option:first-child');

demo:
http://jsfiddle.net/x4bMa/

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