1

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

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

既然它在其他浏览器中工作,我怎么能只使用 CSS 来做到这一点?

4

3 回答 3

0

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

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


 $('.tagCloud').addClass('imageclass'); // same way you can use remove class
于 2012-12-07T13:43:57.127 回答
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")');
于 2012-12-07T13:11:41.887 回答
0

这应该有效:

# Notice the double quotes around the filename.
jQuery('.tagCloud').css('background-image', 'url("bg_blue.gif")');
于 2012-12-07T13:12:00.877 回答