.data()-Attaches数据到选定元素或从选定元素获取数据。jQuery中的方法
问题:
1)这种方法的目的是什么?
2)运行它时,我看不到创建了data- *属性。那么,data-*属性和由data()jQuery中的方法创建的数据之间有什么区别?
<!--code from w3school -->
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
$("div").data("greeting", "Hello World");
});
$("#btn2").click(function(){
alert($("div").data("greeting"));
});
});
</script>
</head>
<body>
<button id="btn1">Attach data to div element</button><br>
<button id="btn2">Get data attached to div element</button>
<div></div>
</body>
</html>
RISEBY
交互式爱情
相关分类