0

我想在下拉列表中预先选择某个选项,并希望使用 HTML 中的“selected”参数来选择它。这可能吗?

                        <option value="@cat.ID" 
                            @if(cat.ID == 2){
                                @: selected );
                            }
                        >@cat.Category</option>
4

1 回答 1

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"

参考文档:http ://dropkickjs.com/api.html#method-select

于 2017-05-09T10:50:33.687 回答