0

我已经使用 jquery ui 创建了一个工具提示,但是当我使用键盘导航时,工具提示内容只出现一次,并且再也不会出现。

任何想法为什么会发生这种情况?

$('.test').tooltip({
    tooltipClass: "tip-style",
    position: {
        my: "left center",
        at: "right center"
    },
    content: function() {
        return $('#tip-content').html();
    }
});

我的工作示例:http: //jsfiddle.net/WQpGE/

4

1 回答 1

0

我认为这是因为工具提示文档说该content:方法应该是回调或字符串

支持多种类型:

Function: A callback which can either return the content directly, 
          or call the first argument, passing in the content, e.g., 
          for Ajax content.

String: A string of HTML to use for the tooltip content.

我通过创建一个命名函数并在内容方法中引用它来编辑您的代码。它似乎按预期工作。

http://jsfiddle.net/WQpGE/3/

于 2013-03-25T23:36:55.173 回答