我只是坚持使用 IE 8 在 jQuery 中进行 RGBA() 操作
到目前为止,我有这个:
$('.set').click(function (e) {
var hiddenSection = $('div.hidden');
hiddenSection.fadeIn()
.css({ 'display': 'block' })
.css({ width: $(window).width() + 'px', height: $(window).height() + 'px' })
.css({ top: ($(window).height() - hiddenSection.height()) / 2 + 'px',
left: ($(window).width() - hiddenSection.width()) / 2 + 'px'
})
.css({ 'background-color': 'rgba(0,0,0,0.5)' }) //Problem here in IE8
.appendTo('body');
$('span.close').click(function () { $(hiddenSection).fadeOut(); });
});
它适用于所有其他浏览器,不知道为什么它在 IE 8 中失败我收到此错误!
Invalid property value
在jquery.min.js中。
任何帮助是极大的赞赏!
谢谢