标签: javascript html internet-explorer-8
这是我的div
<div class="imgBox" id="imgBox" style="margin:auto;zoom:100%;"> //content </div>
当我在脚本中提醒缩放值时
alert(parseInt(document.getElementById("imgBox").style.zoom));
它在IE9中正确返回为100,但在IE8中错误地返回为1。
这里有什么问题???
由于