2
我有我的JQuery的問題,我不明白爲什麼刪除按鈕不起作用,你能幫助我嗎? =) 因此,這裏是我的代碼:Jquery - 與.remove()的一些問題
$('.removeBook').on('click', function() {
$('div').remove();
});
$('#createBook').click(function() {
$('#list').append('<div>Hello' + '<button type="button" name="removeBook" class="removeBook">Remove</button>' + '</div>');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<button type="button" name="createBook" id="createBook">Create</button>
<div id="list">
</div>
在此先感謝如果你能幫助我!
與類元素'removeBook'只存在_after_點擊'按鈕#createBook'。一種可能的解決方案是使用[事件委託](https://learn.jquery.com/events/event-delegation/) – Andreas