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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。