我将事件处理程序附加到表格单元格。单击搜索按钮后会生成该表。搜索按钮还会生成一个链接,单击该链接会打开一个模式弹出窗口,其中包含另一个表格。模式弹出窗口中的表格也应该有相同的事件处理程序附加到其单元格。
这样做可以吗:
$(document).on('mouseenter mouseleave', '.cell-with-action', function(e){
var action = $(this).find('.action');
if(e.type == 'mouseenter'){
//do something
}
else{
//do something else
}
});
还是在单击搜索按钮和链接按钮时附加它更好?这样做会有所不同:
$('.table-with-action').on('mouseenter mouseleave', '.cell-with-action', function(e){
var action = $(this).find('.action');
if(e.type == 'mouseenter'){
//do something
}
else{
//do something else
}
});
谢谢你。