我正在使用 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' }
});
});
});