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,

预先感谢您的所有帮助!

埃米尔

4

1 回答 1

1

在以下情况下尝试引用:

show: {'when': 'mouseover' }

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

于 2010-07-18T07:11:33.057 回答