tabbable selector
說明:選擇用戶可以通過選項卡聚焦的元素。
jQuery( ":tabbable" )
一些元素本身是可選項卡的,而另一些則需要顯式設置正選項卡索引。在所有情況下,元素都必須可見才能成為可選項卡。
如果以下類型的元素沒有負標簽索引且未禁用,則它們是可標簽的:input
、select
、textarea
、button
和object
。如果錨點具有 href
或正的 tabindex
屬性,則它們是可聚焦的。 area
元素是可聚焦的,如果它們位於命名Map內,具有 href
屬性,並且有使用Map的可見圖像。所有其他元素都是可選項卡,僅基於它們的tabindex
屬性和可見性。
注意:具有負標簽索引的元素是
,但不是 :focusable
:tabbable
。
例子:
選擇可選項卡元素並用紅色邊框突出顯示它們。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>tabbable demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<style>
input {
border: 1px solid #000;
}
div {
padding: 5px;
}
</style>
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div><input value="no tabindex"></div>
<div><input tabindex="5" value="positive tabindex"></div>
<div><input tabindex="-1" value="negative tabindex"></div>
<script>
$( ":tabbable" ).css( "border-color", "red" );
</script>
</body>
</html>
演示:
相關用法
- JQuery :text用法及代碼示例
- JQuery UI :focusable Selector用法及代碼示例
- JQuery :nth-child()用法及代碼示例
- JQuery :empty用法及代碼示例
- JQuery :root用法及代碼示例
- JQuery :last-child用法及代碼示例
- JQuery :last用法及代碼示例
- JQuery :only-child用法及代碼示例
- JQuery :password用法及代碼示例
- JQuery :eq()用法及代碼示例
- JQuery :disabled用法及代碼示例
- JQuery :parent用法及代碼示例
- JQuery :even用法及代碼示例
- JQuery :radio用法及代碼示例
- JQuery :contains()用法及代碼示例
- JQuery :reset用法及代碼示例
- JQuery :input用法及代碼示例
- JQuery :button用法及代碼示例
- JQuery :first-of-type用法及代碼示例
- JQuery UI :data() Selector用法及代碼示例
- JQuery :checkbox用法及代碼示例
- JQuery :file用法及代碼示例
- JQuery :gt()用法及代碼示例
- JQuery :first-child用法及代碼示例
- JQuery :animated用法及代碼示例
注:本文由純淨天空篩選整理自jqueryui.com大神的英文原創作品 :tabbable Selector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。