jQuery qTip 回调不起作用

发布于 2024-09-27 07:12:55 字数 350 浏览 5 评论 0原文

我正在使用一个名为 qTip (http://craigsworks.com/projects/qtip/docs/api/#callbacks) 的 jQuery 插件,并尝试为动态加载的数据实现回调函数。

这是我所拥有的:

$('#orders_table a').qtip('api').onRender(function(){
        alert('test');
 })

正在为 #orders_table 中的所有链接初始化 qTip。

然而,当我加载 qTip 时,什么也没有发生 - 它加载了,但没有警报。

有什么想法吗?

谢谢!

I'm using a jQuery plugin called qTip (http://craigsworks.com/projects/qtip/docs/api/#callbacks) and trying to implement a callback function for dynamically loaded data.

Here's what I have:

$('#orders_table a').qtip('api').onRender(function(){
        alert('test');
 })

The qTip is being initialized for all of the links within the #orders_table.

Nothing happens however, when I load a qTip - It loads, but no alert.

Any ideas?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柏拉图鍀咏恒 2024-10-04 07:12:55

如果你这样做怎么办:

$('#orders_table a').qtip({
    api: {
        onRender:function() {
           alert('test');
        }
    }
});

What if you do it like this:

$('#orders_table a').qtip({
    api: {
        onRender:function() {
           alert('test');
        }
    }
});
执手闯天涯 2024-10-04 07:12:55

只是想添加 qtip 2.0 的代码如下所示:我省略了渲染回调所需的所有其他元素,因此请记住这一点。

$("#myselector").qtip({
    events: {
        render: function () {
            console.log("rendered");
        }
    }
});

Just wanted to add that for qtip 2.0 the code looks like this: I'm omitting all other elements than what's necessary for a render callback, so keep that in mind.

$("#myselector").qtip({
    events: {
        render: function () {
            console.log("rendered");
        }
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文