我正在使用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' }
});
});
});
答案 0 :(得分:0)
我的JQuery版本是1.4,我更新到上一版本(1.8.3),现在模态问题在IE7中工作正常。