向元素附加数据,然后取回该数据
- <html>
- <head>
- <script type="text/javascript" src="/jquery/jquery.js"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- $("#btn1").click(function(){
- $("div").data("greeting", "Hello World");
- //alert($(this).data("state"));
- });
- $("#btn2").click(function(){
- alert($("div").data("greeting"));
- });
- });
- </script>
- </head>
- <body>
- <button id="btn1" data-state="1">把数据添加到 div 元素</button><br />
- <button id="btn2">获取已添加到 div 元素的数据</button>
- <div></div>
- </body>
- </html>
时间: 2024-11-10 00:53:28