单击div中的特定元素

时间:2013-03-29 17:11:52

标签: jquery html click

我的网页应用包含一些可插入div的可拖动元素,我想听用户点击这个插入div的元素

我想要的是捕获点击的jquery函数,如果点击的元素是div,那么做什么

元素有一个类可移除

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

这个div将被拖动元素

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

1 个答案:

答案 0 :(得分:1)

使用jQuery on处理程序:

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