我设置了工具
提示和对话框,如下所示:
$(document).ready(function() {
$( "#dialog" ).dialog({ autoOpen: false });
$( document ).tooltip();
但是当我稍后打开对话框时,它的关闭工具提示总是出现在打开状态,而不仅仅是按照预期将鼠标悬停在关闭状态.有没有其他人看到这种行为/知道它为什么会发生?
在jQueryUI 1.9中,设置items选项以排除对话框的
标题栏
关闭小部件似乎对我有用
$( document ).tooltip({
items: '*:not(.ui-dialog-titlebar-close)'
});
原文链接:https://www.f2er.com/jquery/177260.html