我正在使用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])')
这些都不正确。
由于
答案 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下拉列表的<script>
var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
var value = dropdownlist.value();
</script>