0

我正在使用 qtip2 一切都很好,但模式提示在 IE7 中不起作用:

$(document).ready(function () {
    $('a[rel="master-modal-tip"]').each(function () {
        $(this).qtip(
        {
            content: { text: $('#' + $(this).attr('ttid')), title: { text: '', button: true} },
            position: { my: 'center', at: 'center', target: $(window) },
            show: { event: 'click', modal: { on: true, blur: false} },
            hide: false,
            style: { classes: 'master-modal-tip' }
        });
    });
});
4

1 回答 1

0

我的 JQuery 版本是 1.4,我更新到最新版本(1.8.3),模式问题现在在 IE7 中运行良好。

于 2013-01-15T13:31:44.450 回答