动态内容在除 IE 之外的所有浏览器中加载到 jQuery qtip
qTip...一个 jQuery 自定义工具提示插件...不会加载 IE8 的动态内容(尚未在 IE6/7 中进行测试)。 qTip 已初始化,但没有内容(文本)加载到其中。
这是我的代码:
errorPlacement: function(error, element) {
var errorcontent=eval(error);
element.parents('.rightfields').find('.norederrorx').removeClass('norederrorx').addClass('rederrorx').qtip(
{
show: {when: 'mouseover', solo: true},
content: { text: errorcontent },
//formatting options here
}
});
所以是的... content: { text:errorcontent } 没有加载任何 errorcontent
:(
我也尝试过 content: errorcontent,
谢谢 感谢您的帮助!
提前
qTip...a jQuery custom tooltip plugin... isn't loading dynamic content for IE8 (haven't tested in IE6/7). qTip initializes but no content (text) loads into it.
Here is my code:
errorPlacement: function(error, element) {
var errorcontent=eval(error);
element.parents('.rightfields').find('.norederrorx').removeClass('norederrorx').addClass('rederrorx').qtip(
{
show: {when: 'mouseover', solo: true},
content: { text: errorcontent },
//formatting options here
}
});
So yea... content: { text:errorcontent } loads none of the errorcontent
:(
I've tried also content: errorcontent,
Thank you in advance for all your help!
Emile
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试引用when:
这可能是IE中的特殊关键字。另外,到目前为止您尝试使用
alert
调试什么?Try quoting when:
It's probably a special keyword in IE. Also, what did you try to debug so far with
alert
?