jQuery 模板选择选项
如何使用 jQuery 模板来选择选项?
假设我的数据是: { "color" : "red" }
我有:
<select>
<option>blue</option>
<option>green</option>
<option>red</option>
</select>
我希望默认选择红色。我该怎么做?
谢谢。
How do I use jQuery templates to select an option?
Let's say my data is: { "color" : "red" }
I have :
<select>
<option>blue</option>
<option>green</option>
<option>red</option>
</select>
I want red to be the one that's selected by default. How can I do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许不是最优雅的,但这是在模板中执行此操作的一种方法: http://jsfiddle.net/ rniemeyer/z7Uu7/
Maybe not the most elegant, but here is a way to do it in your template: http://jsfiddle.net/rniemeyer/z7Uu7/