无论出于何种原因,我都无法在回答后编辑the previous question: - (
IE 11.0.2中的(确切版本:11.0.9600.16476)
重现的步骤:
我想看到的内容:
我所看到的是:
来源:http://jsfiddle.net/ZdaRw/16
function scaleToView()
{
$('#header').center();
$('#header2').center();
}
$(function()
{
$.fn.extend({center: function ()
{
pos = 0;
this.css('left', (pos + (($(window).width() - $(this).outerWidth()) / 2) +
$(window).scrollLeft()) + 'px');
return this;
}});
scaleToView();
$( window ).resize(scaleToView);
});
我是否对源代码有误,或者它是IE中的错误?