data selector
說明:選擇在指定鍵下存儲數據的元素。
-
jQuery( ":data(key)" )
key: 數據鍵。
如果表達式 $( "div:data(foo)")
具有通過 .data( "foo", value )
存儲的數據,則表達式 $( "div:data(foo)")
與 <div>
匹配。
例子:
選擇帶有數據的元素並更改其背景顏色。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>data demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<style>
div {
width: 100px;
height: 100px;
border: 1px solid #000;
float: left;
}
</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 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>
演示:
相關用法
- JQuery :disabled用法及代碼示例
- JQuery UI :focusable Selector用法及代碼示例
- JQuery :nth-child()用法及代碼示例
- JQuery :empty用法及代碼示例
- JQuery :root用法及代碼示例
- JQuery :last-child用法及代碼示例
- JQuery :last用法及代碼示例
- JQuery :only-child用法及代碼示例
- JQuery :password用法及代碼示例
- JQuery :eq()用法及代碼示例
- JQuery UI :tabbable Selector用法及代碼示例
- JQuery :parent用法及代碼示例
- JQuery :even用法及代碼示例
- JQuery :radio用法及代碼示例
- JQuery :contains()用法及代碼示例
- JQuery :reset用法及代碼示例
- JQuery :input用法及代碼示例
- JQuery :button用法及代碼示例
- JQuery :first-of-type用法及代碼示例
- JQuery :checkbox用法及代碼示例
- JQuery :file用法及代碼示例
- JQuery :gt()用法及代碼示例
- JQuery :first-child用法及代碼示例
- JQuery :animated用法及代碼示例
- JQuery :first用法及代碼示例
注:本文由純淨天空篩選整理自jqueryui.com大神的英文原創作品 :data() Selector。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。