动态内容在除 IE 之外的所有浏览器中加载到 jQuery qtip

发布于 2024-09-10 11:58:56 字数 731 浏览 6 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

浪荡不羁 2024-09-17 11:58:56

尝试引用when:

show: {'when': 'mouseover' }

这可能是IE中的特殊关键字。另外,到目前为止您尝试使用 alert 调试什么?

Try quoting when:

show: {'when': 'mouseover' }

It's probably a special keyword in IE. Also, what did you try to debug so far with alert?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文