我将 jQuery UI 菜单用作上下文菜单,因此当用户单击表格中的单元格时,它会显示相关选项。问题是,它并不是真的被设计成这样使用的,所以当用户在菜单外点击时它不会隐藏。
我尝试使用模糊方法:
$("#menu").menu({
blur: function( event, ui ) {
$("#menu").css('top', '-1000px');
$("#menu").css('left', '-1000px');
}
});
但由于某种原因,即使您滚动到菜单中的某个选项,菜单也会隐藏。
有一个简单的解决方案吗?
编辑: 要拉出我使用的菜单:
$("table.adminScheduleViewer tr td:nth-child(4), table.adminScheduleViewer tr td:nth-child(5), table.adminScheduleViewer tr td:nth-child(6), table.adminScheduleViewer tr td:nth-child(7), table.adminScheduleViewer tr td:nth-child(8), table.adminScheduleViewer tr td:nth-child(9), table.adminScheduleViewer tr td:nth-child(10)").click(function(event){
$("#menu").css('top', event.pageY);
$("#menu").css('left', event.pageX);
});
如果我尝试使用 $('body').click() 来隐藏它,那似乎总是首先被调用。你能改变 jQuery 处理点击的顺序吗?