Jquery不支持伪:可聚焦

时间:2013-11-04 06:09:13

标签: javascript jquery jquery-selectors focusable

我尝试运行以下代码:

focusables = container.find(":focusable"); where container is a div.

我收到错误:

Syntax error, unrecognized expression: unsupported pseudo: focusable

我正在使用jquery-1.9.1。原因是什么?有没有其他方法可以找到div中的所有可聚焦元素?

1 个答案:

答案 0 :(得分:9)

这似乎不是jQuery的一部分,而是jQuery UI的一部分: https://github.com/jquery/jquery-ui/blob/44b2180782df6ef3324789324fcf3f98b85784a0/ui/jquery.ui.core.js#L93

更新: 我已将此代码解压缩为一个小的jquery“插件”,请参阅: https://gist.github.com/njam/7974250