最近写了一个象棋的布局网页,因为需要用户交互,所以在不同的浏览器进行交互的时候发现,在360的兼容模式下网页布局正确,可是在chrome和火狐根本就是相当于没有执行布局的脚本,这是为什么呢?后来发现在ie10以上的版本都不行,后来查找了种种方法,终于发现,原来是写js加脚本控制div的位置与大小的时候一定要加上单位:就是不能这么写:
var object=document.getElementById("background");
object.style.height=qipan_h;
object.style.width=qipan_w;
object.style.left=(width-qipan_w)/2;
object.style.position="absolut
一定要改为这样:
var object=document.getElementById("background");
object.style.height=qipan_h+"px";
object.style.width=qipan_w+"px";
object.style.left=(width-qipan_w)/2+"px";
object.style.position="absolute";
时间: 2024-10-25 22:16:49