jQuery qTip 回调不起作用
我正在使用一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你这样做怎么办:
What if you do it like this:
只是想添加 qtip 2.0 的代码如下所示:我省略了渲染回调所需的所有其他元素,因此请记住这一点。
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.