jQuery模板选择选项

时间:2011-02-08 23:10:43

标签: javascript jquery templates select jquery-templates

如何使用jQuery模板选择选项?

假设我的数据是:{ "color" : "red" }

我有:

<select>
  <option>blue</option>
  <option>green</option>
  <option>red</option>
</select>

我希望红色是默认选中的那个。我怎么能这样做?

感谢。

2 个答案:

答案 0 :(得分:6)

$("select").val(data['color']);

答案 1 :(得分:4)

也许不是最优雅的,但这是在您的模板中执行此操作的方法:http://jsfiddle.net/rniemeyer/z7Uu7/

<select>
    <option {{if color == 'blue'}}selected{{/if}}>blue</option>
    <option {{if color == 'green'}}selected{{/if}}>green</option>
    <option {{if color == 'red'}}selected{{/if}}>red</option>
</select>