Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击菜单内的链接时,我需要如何以及在何处设置我的画布中的 data-close-on-click 参数以避免菜单关闭?
使用 jquery:
$('#yourDatePickerID').click(function(e) e.stopPropagation(); e.preventDefault(); });
根据您使用的日期选择器,这可能会或可能不会起作用。它甚至可能不允许您打开日历图像。如果它不起作用,我建议您查看单击确定按钮时触发日期选择器的事件。将此代码附加到该事件而不是单击事件,然后重试。