Internals/API/jQuery - Sample Code
jQuery.data(elem)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="/jquery/js/jquery.js"></script>
<script>
$(document).ready(function(){
$(document.body).click(function(e) {
var id = jQuery.data(e.target);
$("span").text(id);
});
});
</script>
<style>
div { margin:5px; background:yellow; }
p { margin:5px; color:blue; }
span { color:red; }
</style>
</head>
<body>
<div>DIV要素</div>
<div>別のDIV要素</div>
<div id="hoge">idを指定したDIV要素</div>
<p>今クリックされた要素のIDは <span>?</span> です。</p>
</body>
</html>
[実行結果]