如何选择,而不是使用jquery扩展下拉列表

时间:2014-04-17 13:13:40

标签: javascript jquery html kendo-ui

我正在使用kendo UI下拉列表。但标准选择元素的解决方案也可以提供帮助。

我曾尝试过

$('select:not(aria-expanded)')
$('select:not(aria-expanded=true)') // syntax error
$('select:not(expanded)')
$('select:not([aria-expanded=true])')
$('select:not([expanded=true])')

这些都不正确。

由于

2 个答案:

答案 0 :(得分:0)

您需要将该属性包装在方括号[ ]中:

$('select:not([aria-expanded=true])')

答案 1 :(得分:0)

如果您询问如何关注选择下拉列表then use the methods that are apart of the api for the dropdown list

<script>
    $("#dropdownlist").kendoDropDownList();
    var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
    dropdownlist.focus();
</script>

<强>更新

使用jquery:

的一个Kendo下拉列表的

Here is how you get the value

<script>
    var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
    var value = dropdownlist.value();
</script>