将一个元素移至 DropdownList 中的第一个元素
我列出了一个城市的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如:
演示:
http://jsfiddle.net/x4bMa/
for example:
demo:
http://jsfiddle.net/x4bMa/