我有一个具有 2 个文本输入的 Superfish 菜单项,如果这些字段之一具有用户的焦点,我想确保菜单不会关闭(隐藏)。
除了我不知道如何停止 Superfish Hide 事件执行之外,我拥有一切。
jQuery(function () {
jQuery('ul.sf-menu').superfish({
onBeforeHide: function () {
$('ul.sf-menu').find('input[type=text], input[type=password]').each(function () {
if ($(this).is(':focus')) {
//need code to stop Superfish Hide execution here
}
});
},
delay: 500
});
});
如何停止隐藏事件执行?