使用 qTip 的动态内容的动态参数
我想用 qTip 传递动态参数,但失败了。 my_ajax_controller.php 仅显示变量类型,但不显示 q。
$('a.menu_help').qtip({
content: {
url:'my_ajax_controller.php',
data: 'type=help_menu&q='+$(this).attr('id'),
method: 'get'
},
show: 'mouseover',
hide: 'mouseout'
});
但是, q 的静态值可以工作:
$('a.menu_help').qtip({
content: {
url:'my_ajax_controller.php',
data: 'type=help_menu&q=toto',
method: 'get'
},
show: 'mouseover',
hide: 'mouseout'
});
是否没有办法将动态值传递给参数 data ?
提前致谢 !
弗洛朗
I want to pass a dynamic parameter with qTip, but it fails. my_ajax_controller.php just displays the variable type, but not q.
$('a.menu_help').qtip({
content: {
url:'my_ajax_controller.php',
data: 'type=help_menu&q='+$(this).attr('id'),
method: 'get'
},
show: 'mouseover',
hide: 'mouseout'
});
However, a static value of q works:
$('a.menu_help').qtip({
content: {
url:'my_ajax_controller.php',
data: 'type=help_menu&q=toto',
method: 'get'
},
show: 'mouseover',
hide: 'mouseout'
});
Is there no way to pass a dynamic value to the parameter data ?
Thanks in advance !
Florent
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样的事情:
我还没有测试过这个,但我已经做了类似的事情。只是现在找不到而已。
try something like this:
I haven't tested this, but i've done something similar. Just can't find it right now.
我遇到了同样的问题,我用这段代码解决了。与 qtip 1.0 rc3 和 JQuery 1.4.2 配合良好。
请注意,qtip 对于 jquery>1.3 存在问题。 Google 获取相关信息,但很容易修复在 jquery.qtip.js 上添加一行
I had the same problem and i solved with this code. Works fine with qtip 1.0 rc3 and JQuery 1.4.2.
Note that qtip has and issue with jquery>1.3. Google for related info, but it's easy to fix adding a single line on jquery.qtip.js
它应该可以工作,但只需尝试查看您作为 ID 传递的内容,或作为集合传递数据,例如:
或者
It should work, but just try to see what you pass as ID, or pass data as collection something like:
Or