jQuery Tooltip插件和ajax元素

时间:2011-01-15 07:30:31

标签: jquery-plugins jquery tooltip

我想从jQuery Tools网站应用jquery工具提示插件 (http://flowplayer.org/tools/tooltip/index.html)在我的页面中由ajax加载的一些元素。

我知道委托(0和live()方法用于将事件应用于ajax加载的元素,但我不知道如何将插件应用于这些元素。

代码是:

$("#mytable img").tooltip({
    // each trashcan image works as a trigger
    tip: '#tooltip',

    // custom positioning
    position: 'center right',

    // move tooltip a little bit to the right
    offset: [0, 15],

    // there is no delay when the mouse is moved away from the trigger
    delay: 0
}).dynamic({ bottom: { direction: 'down', bounce: true } });
有人会帮助我吗? 谢谢。

3 个答案:

答案 0 :(得分:0)

将调用应用于脚本的悬停功能部分,如:

$("#mytable img").live('hover', function() {
    //your function here
});

或者,您可以直接在正在加载的ajax页面中使用该脚本,在这种情况下,脚本与内容直接位于同一层中。

答案 1 :(得分:0)

您必须在ajax调用成功函数的新内容上初始化工具提示插件。

答案 2 :(得分:0)

现在解决了。我在这里写道:

jQuery Tooltip plugin error