实例
下例演示了从 <div> 元素中移除之前附加的数据:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎来到蝴蝶教程</title>
//此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#btn1").click(function(){
$("div").data("name", "Hello World");
alert("已将数据附加到div元素");
});
$("#btn2").click(function(){
$("div").removeData("name");
alert("data值已被移出返回undefined: " + $("div").data("name"));
});
});
</script>
</head>
<body>
<p><button id="btn1">附加数据到div元素</button></p>
<p><button id="btn2">移除附加到div元素的数据</button></p>
<div></div>
</body>
</html>
尝试一下