我的网页应用包含一些可插入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>
答案 0 :(得分:1)
使用jQuery on
处理程序:
$("div.execute").on("click", ".removable", function(){
alert( $(this).text() );
});