我想在下拉列表中预先选择某个选项,并希望使用HTML中的“selected”参数来选择它。这可能吗?
<option value="@cat.ID"
@if(cat.ID == 2){
@: selected );
}
>@cat.Category</option>
答案 0 :(得分:0)
要选择默认选项,您可以执行以下操作:
var elm = new Dropkick("#select");
// Select by index
elm.select(4); //selects & returns 5th item in the list
// Select by value
elm.select("AL"); // selects & returns option with the value "AL"