不工作jQuery的負載之後,我使用兩個jQuery的通過jQuery
首先點擊「第一」,顯示內容
後點擊「兩次」,但不顯示內容
此鏈接,我的代碼:http://jsfiddle.net/cFxsa/
代碼:
$(function(){
$('.first').click(function(){
$('#load').html('<a href="#" class="second">Twice</a>');
});
$('.second').click(function(){
$('#twice').html('<a href="#" class="third">Third</a>');
});
});
此刻你要綁定的事件處理程序'$(「第二個」)',沒有這樣的元素還不存在。 –