背景图像不出现在ie7中

时间:2012-12-07 13:05:11

标签: javascript jquery internet-explorer-7

我尝试使用js-cumulus库 http://jeroenvanwarmerdam.nl/content/resources/javascript/jscumulus/js-cumulus.html 在IE7中,不显示蓝色背景图像。但是,如果我在初始化库后使用这个jQuery代码,它就可以工作。

 jQuery('.tagCloud').css('background-image', 'url(bg_blue.gif)');

如何仅使用CSS,因为它适用于其他浏览器?

3 个答案:

答案 0 :(得分:0)

请尝试:

jQuery('.tagCloud').css('background-image', 'url(/bg_blue.gif)');

jQuery('.tagCloud').css('background-image', 'url("/bg_blue.gif")');

jQuery('.tagCloud').css('background-image', 'url("bg_blue.gif")');

答案 1 :(得分:0)

这应该有效:

# Notice the double quotes around the filename.
jQuery('.tagCloud').css('background-image', 'url("bg_blue.gif")');

答案 2 :(得分:0)

您也可以为该元素提供css类。

.imageclass
 {
   background-image:url(/bg_blue.gif);
 }


 $('.tagCloud').addClass('imageclass'); // same way you can use remove class