1

我在我的 css 中的几个地方都有条目,例如:

button {
  background-image: url('../images/button.png');
}

我想要一个 jQuery 中的函数,它将images/所有background-imageurl 中的所有出现更改为:

button {
  background-image: url('../images/Customer/button.png');
}

我目前使用这段可怕的代码来做这件事,但我怀疑使用 jQuery 有一种更简洁的方法。请注意,图像的实际位置保存在sessionStorage.

// Hacks all CSS styles that refer to the images folder.
for ( s = 0; s < document.styleSheets.length; s++ ) {
  var mysheet=document.styleSheets[s];
  var myrules=mysheet.cssRules? mysheet.cssRules: mysheet.rules;
  // Look for: background-image: url(images/button.png); 
  for (i=0; i < myrules.length; i++){
    var css = myrules[i].style.cssText;
    if(css.indexOf('images/') != -1 ){
      // Surgery on the cssText because the individual entries are read only.
      // Replace the css.
      myrules[i].style.cssText = css.replace("images/", sessionStorage.images);
      // That's the new style.

    }
  }
}
4

2 回答 2

0

你不应该在这里需要 jQuery。

尝试引入新的 CSS 定义button并将其添加到页面中。这将覆盖您之前的定义。

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = 'button { background-image: url("../images/Customer/button.png"); }';
document.head.appendChild(style);

button或者,调整元素的内联 CSS :

var buttons = document.getElementsByTagName('button'),
    i = 0;

for (; i < buttons.length; i++) {
    buttons[i].style.backgroundImage = 'url("../images/Customer/button.png")';
}
于 2012-08-09T15:01:57.103 回答
0

将此插件与 jQuery 一起使用:

jQuery.Rule -- http://flesler-plugins.googlecode.com/files/jquery.rule-1.0.2-min.js

然后执行以下操作:

$(function(){

    var customer = 'Oscar';

    // Get all stylesheets
    $.rule().sheets.map(function(index, cssSheet){
            // Get all css rules from all the stylesheets
        $.each(cssSheet.cssRules, function(index, cssRule){
            // If cssRule is 'background-image' type
            if(cssRule.cssText.indexOf('background-image') != -1){
                // Prepare new cssRule adding the customer
                var newCssRule = cssRule.cssText.replace('/images/', '/images/' + customer + '/');
                // Add new cssRule to the correct stylesheet
                $.rule(newCssRule).appendTo('style');
            }
        });
    });

});

只是要知道,你可以用这个做更多的事情,看看这个链接:

http://flesler.webs.com/jQuery.Rule/

希望这可以帮助 :-)

于 2012-08-09T15:09:46.610 回答