我有一些与一些文本框关联的工具提示,如下所示:
$(document).tooltip({ items: "[data-my-latitude]", position: { my: "center bottom-15", at: "center top", using: function( position, feedback ) { $( this ).css( position ); $( "" ) .addClass( "arrow" ) .addClass( feedback.vertical ) .addClass( feedback.horizontal ) .appendTo( this ); } }, content: function() { var element = $( this ); if ( element.is( "[data-my-latitude]" ) ) { if (element.prop('disabled')) return null; return _map.build(element.val()); } return null; } });
一切正常,但如果用户在文本框中键入不同的值,我想关闭工具提示窗口。
答案 0 :(得分:0)
如果有人有兴趣,我最终会这样做:
element.keyup( function () {
$(".ui-tooltip-content").parents('div').remove();
});