<!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標記中時,我沒有看到這兩者之間有什麼區別。綁定方法有什麼特別之處?jQuery中的綁定和點擊之間的確切區別?
http://api.jquery.com/category/events/
我一直在尋找的文檔,糾正我,如果我錯了......如果點擊綁定做同樣的事情,爲什麼他們有兩種不同的方式來達到同樣的?
**確切的**區別在於一個有五個字母,另一個有四個字母,而且這兩個方法有兩個完全不同的名稱。他們在內部完全一樣。 – adeneo
閱讀這個 http://stackoverflow.com/questions/2954932/difference-between-jquery-click-bind-live-delegate-trigger-and-on –