IE8兼容

1、

2. Google Chrome Frame也可以让IE用上Chrome的引擎:

3.强制IE8使用IE7模式来解析

//或者

4.强制IE8使用IE6或IE5模式来解析

5.如果一个特定版本的IE支持所要求的兼容性模式多于一种,如:

6.弹性盒子

弹性盒子在IE8中无法使用

7.innerHTML

if(getBrowserVersion.isIE8) {

$('#invoiceListDot').innerHTML = htmlTemplate;

}else{

$('#invoiceListDot').text(htmlTemplate);

}

8.创建ajax对象

if(window.XMLHttpRequest){

xmlhttp=newXMLHttpRequest();

}else{

xmlhttp=new newActiveXObject("Microsoft.XMLHTTP");

}

你可能感兴趣的:(IE8兼容)