0
我有我的代碼有問題,我有一些按鈕,它執行的函數被調用時。。對(「點擊」,funcion不工作
<button class="executeFucntion" > Example </button>
這一個工作,但我有其他的按鈕,動態創建按鈕:
$("<button class='executeFucntion'>Example</button>").insertBefore("#id")
此按鈕,第二的人,不與下面的函數工作,我不知道爲什麼:
$(".executeFucntion").on("click", function(e) {
//Code here
});
有什麼幫助嗎? 謝謝。
挑你最喜歡的:[jQuery甚至處理程序不工作的動態內容](http://stackoverflow.com/questions/15090942/jquery-even-handler-not-working-on-dynamic-content)或[動態創建的元素的事件綁定?](http://stackoverflow.com/questions/203198/event-binding-on-dynamically-created-elements) – apsillers