jQuery UI API - :data() Selector

所屬類別

選擇器(Selectors) | UI 核心(UI Core)

用法

描述:選擇數(shù)據(jù)已存儲在指定的鍵下的元素。

jQuery( ":data(key)" )

參數(shù) 描述
key 數(shù)據(jù)的鍵。

表達(dá)式 $( "div:data(foo)") 匹配一個(gè)通過 .data( "foo", value ) 存儲數(shù)據(jù)的 div。

實(shí)例

選擇帶有數(shù)據(jù)的元素,改變它們的背景顏色。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>:data() Selector 實(shí)例</title>
  <link rel="stylesheet"  rel="external nofollow" target="_blank" >
  <style>
  div {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    float: left;
  }
  </style>
  <script src="http://code.jquery.com/jquery-1.10.2.js" rel="external nofollow" ></script>
  <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js" rel="external nofollow" ></script>
</head>
<body>
 
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
 
<script>
$( "#one" ).data( "color", "blue" );
$( "#three" ).data( "color", "green" );
 
$( ":data(color)" ).each(function() {
  var element = $( this );
  element.css( "backgroundColor", element.data( "color" ) );
});
</script>
 
</body>
</html>

查看演示