我有以下CSS代码

#gel{position:absolute; width:20px; height:22px; margin-left:5px; color:#FF0000;background:url('../images/GEL-CURENCY.jpg') repeat-x;background-color:transparent;}


这是我的剧本

document.getElementById("small_txt_container_2").innerHTML = '<span id=\"gel\"></span>';


在IE 8中无法正常工作,请帮助我解决此问题

最佳答案

如果问题仅在IE8中,则在<head>中包含此逻辑

<!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

10-04 16:07