<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>css demo</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(document).ready(function(){
$('button').click(function(){
//$(this).clone().appendTo('div');
$(this).clone().prependTo('div');
})
$('button').bind('click', function(){
$(this).clone().appendTo('div');
})
});
</script>
</head>
<body>
<h1> My WebSite</h1>
<div>
<button data-file="day">Day</button>
<button data-file="night">Night</button>
</div>
</body>
</html>
当我运行代码时,我没有看到这两者之间有任何区别,因为它将元素克隆到我的 div 标签。bind 方法有什么特别之处?
http://api.jquery.com/category/events/
我正在查看文档,如果我错了,请纠正我......如果点击和绑定做同样的事情,为什么他们有两种不同的方式来实现相同的目标?