做网站IE6至8兼容性JS解决法
网站建设出来后在IE6上能正常显示,但在IE8上却完全乱了套,怎么办?
其实只需要使用一小段简单的JS代码即可轻松解决这一问题。
IE7网站设计JS代码为:
<!–[ifltIE7]> <scriptsrcscriptsrc=”http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js”type=”text/javascript”></< span>script> <![endif]–>
IE8网站设计JS代码为:
<!–[ifltIE8]> <scriptsrcscriptsrc=”http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE8.js”type=”text/javascript”></< span>script> <![endif]–>
原理为调用一个在GoogleCode上的项目即可
如果我们的网站设计作品在IE7上没有问题,IE8上显示有问题,而我们又不想做大量的修改,加重网站设计工作量,那么只需要加入
<metahttp-equivmetahttp-equiv="x-ua-compatible"content="IE=7"/>
即可解决问题
补充:web前端 , HTML/CSS ,