第一個.click函數用於在容器中添加元素(div),第二個用於將其從容器中移除。該容器最初沒有元素。通過點擊刪除功能是行不通的第二個.click()函數不起作用
$(document).ready(function(){
$(".class1").click(function(){
//Code for adding element to the container and
// removing class1 from it and adding class2
});
$(".class2").click(function(){
alert("hi"); //Even the alert is not displayed
$(this).fadeOut(100);
});
});
但是,它的工作原理,如果在頁面加載到容器之前,元素已經存在。 任何原因爲什麼?是否因爲document.ready函數?解決方案?
給我們您的HTML請。 –
請發佈html – Sudantha
當您將事件添加到'.class2'元素時,您的元素是否已經存在? –