0
不工作我使用qtip2每一件事情模態模式是好的,但模態提示沒有在IE7工作:
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' }
});
});
});
此外,我複製此代碼,但它不適合我:http://craigsworks.com/projects/qtip2/demos/#modal – mmtemporary