2013-03-29 160 views
0

我的web應用程序包含將被插入一個div一些dragable元素中特定的元素,我要聽用戶點擊這個元素插入的div點擊一個div

我想是jQuery的功能捕捉點擊,如果點擊的元素是wihtin股利做點什麼

元素有一個類移動

<button class="month draggable removable btn" id="01" month="01">Janvier</button> 

這個div來whitch的元素將被拖入

<div class="execute droppable" style="width: 800px;height: 200px;margin-left:10%;margin-top: 3%;border-style: dashed;border:0.5" > 
     </div> 
+0

我建議你改寫你的帖子問一個具體問題,而不是一般的「我要的是」。目前,您的帖子根本不是問題,我們也無法真正幫助您。 – brice

回答

1

使用jQuery on處理程序:

$("div.execute").on("click", ".removable", function(){ 
    alert($(this).text()); 
});