當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery UI :focusable Selector用法及代碼示例


focusable selector

說明:選擇可以聚焦的元素。

  • jQuery( ":focusable" )

一些元素本身是可聚焦的,而另一些則需要顯式設置選項卡索引。在所有情況下,元素都必須可見才能獲得焦點。

如果未禁用以下類型的元素,則它們是可聚焦的:inputselecttextareabuttonobject。如果錨點具有 hreftabindex 屬性,則它們是可聚焦的。 area 元素是可聚焦的,如果它們位於命名Map內,具有 href 屬性,並且有使用Map的可見圖像。所有其他元素僅基於它們的tabindex 屬性和可見性是可聚焦的。

注意:帶有負標簽索引的元素是 :focusable ,但不是 :tabbable

例子:

選擇可聚焦元素並用紅色邊框突出顯示它們。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>focusable demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <style>
  input, a, p {
    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="text input"></div>
<div><a>anchor without href</a></div>
<div><a href="#">anchor with href</a></div>
<div><p>paragraph without tabindex</p></div>
<div><p tabindex="1">paragraph with tabindex</p></div>
 
<script>
$( ":focusable" ).css( "border-color", "red" );
</script>
 
</body>
</html>

演示:

相關用法


注:本文由純淨天空篩選整理自jqueryui.com大神的英文原創作品 :focusable Selector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。