强制将IE,Chrome设置为指定兼容模式来解析一.指定文件兼容性模式要为你的网页指定文件模式,需要在你的网页中使用meta元素放入X-UA-Compatible http-equiv 标头。1. 强制IE8使用IE8模式来解析,而且那个兼容性视图 按钮也被去掉了<meta http-equiv="X-UA-Compatible" content="IE=8">2. Google Chrome Frame也可以让IE用上Chrome的引擎:<meta http-equiv="X-UA-Compatible" content="chrome=1" />3.强制IE8使用IE7模式来解析<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"><!-- IE7&n...
亲测兼容各种浏览器(IE、Firefox、chrome、360、Opera。。。)
获取浏览器的窗口的宽度和高度:<script type=”text/javascript”>
var winWidth = 0;
var sinHeight = 0;
//获取宽度
if(window.innerWidth)
winWidth = window.innerWidth;
else if((document.body) && (document.body.clientWidth))
winWidth = document.body.clientWidth;
//获取高度
if(window.innerHeight)
winHeight = window.innerHeight;
else if((document.body)&nb...