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 に答える