使用Javascript更改CSS值

时间:2009-02-19 16:53:20

标签: javascript html css ajax dom

使用javascript设置内联CSS值很容易。如果我想改变宽度,我有这样的HTML:

<div style="width: 10px"></div>

我需要做的就是:

document.getElementById('id').style.width = value;

它将更改内联样式表值。通常这不是问题,因为内联样式会覆盖样式表。例如:

<style>
   #tId {
      width: 50%;
   }
</style>

<div id="tId"></div>

使用此Javascript:

document.getElementById('tId').style.width = "30%";

我得到以下内容:

<style>
   #tId {
      width: 50%;
   }
</style>

<div id="tId" style="width: 30%";></div>

这是一个问题,因为我不仅要更改内联值,如果我在设置之前查找宽度,当我有:

<div id="tId"></div>

返回的值是Null,所以如果我有Javascript需要知道某些逻辑的宽度(我将宽度增加1%,而不是特定值),当我期望字符串时返回Null “50%”并没有真正起作用。

所以我的问题:我的CSS样式中的值不是内联的,我如何获得这些值?在给定id的情况下,如何修改样式而不是内联值?

9 个答案:

答案 0 :(得分:88)

好吧,听起来你想要改变全局CSS,这样就可以有效地改变一个特定形状的所有元素。我最近从Shawn Olson tutorial学会了自己如何做到这一点。您可以直接引用他的代码here

以下是摘要:

您可以通过document.styleSheets检索stylesheets。这实际上将返回页面中所有样式表的数组,但您可以通过document.styleSheets[styleIndex].href属性告诉您所在的样式表。找到要编辑的样式表后,需要获取规则数组。这在IE中称为“规则”,在大多数其他浏览器中称为“cssRules”。告诉CSSRule你所在的是selectorText属性的方法。工作代码看起来像这样:

var cssRuleCode = document.all ? 'rules' : 'cssRules'; //account for IE and FF
var rule = document.styleSheets[styleIndex][cssRuleCode][ruleIndex];
var selector = rule.selectorText;  //maybe '#tId'
var value = rule.value;            //both selectorText and value are settable.

请告诉我这是如何工作的,如果您发现任何错误,请发表评论。

答案 1 :(得分:43)

请!只要问问w3(http://www.quirksmode.org/dom/w3c_css.html)! 或者实际上,我花了五个小时......但现在就是这样!

function css(selector, property, value) {
    for (var i=0; i<document.styleSheets.length;i++) {//Loop through all styles
        //Try add rule
        try { document.styleSheets[i].insertRule(selector+ ' {'+property+':'+value+'}', document.styleSheets[i].cssRules.length);
        } catch(err) {try { document.styleSheets[i].addRule(selector, property+':'+value);} catch(err) {}}//IE
    }
}

该功能非常易于使用..例如:

<div id="box" class="boxes" onclick="css('#box', 'color', 'red')">Click Me!</div>
Or:
<div class="boxes" onmouseover="css('.boxes', 'color', 'green')">Mouseover Me!</div>
Or:
<div class="boxes" onclick="css('body', 'border', '1px solid #3cc')">Click Me!</div>

喔..

<小时/> 编辑:正如@ user21820在其答案中所述,更改页面上的所有样式表可能有点不必要。以下脚本适用于IE5.5以及最新的Google Chrome,并且仅添加了上述css()函数。

(function (scope) {
    // Create a new stylesheet in the bottom
    // of <head>, where the css rules will go
    var style = document.createElement('style');
    document.head.appendChild(style);
    var stylesheet = style.sheet;
    scope.css = function (selector, property, value) {
        // Append the rule (Major browsers)
        try { stylesheet.insertRule(selector+' {'+property+':'+value+'}', stylesheet.cssRules.length);
        } catch(err) {try { stylesheet.addRule(selector, property+':'+value); // (pre IE9)
        } catch(err) {console.log("Couldn't add style");}} // (alien browsers)
    }
})(window);

答案 2 :(得分:10)

在答案中收集代码,我写了这个函数,在我的FF 25上运行得很好。

function CCSStylesheetRuleStyle(stylesheet, selectorText, style, value){
  /* returns the value of the element style of the rule in the stylesheet
  *  If no value is given, reads the value
  *  If value is given, the value is changed and returned
  *  If '' (empty string) is given, erases the value.
  *  The browser will apply the default one
  *
  * string stylesheet: part of the .css name to be recognized, e.g. 'default'
  * string selectorText: css selector, e.g. '#myId', '.myClass', 'thead td'
  * string style: camelCase element style, e.g. 'fontSize'
  * string value optionnal : the new value
  */
  var CCSstyle = undefined, rules;
  for(var m in document.styleSheets){
    if(document.styleSheets[m].href.indexOf(stylesheet) != -1){
     rules = document.styleSheets[m][document.all ? 'rules' : 'cssRules'];
     for(var n in rules){
       if(rules[n].selectorText == selectorText){
         CCSstyle = rules[n].style;
         break;
       }
     }
     break;
    }
  }
  if(value == undefined)
    return CCSstyle[style]
  else
    return CCSstyle[style] = value
}

这是一种将值放在将在JS中使用的css的方法,即使浏览器不理解它也是如此。例如滚动表中的tbody的maxHeight。

致电:

CCSStylesheetRuleStyle('default', "#mydiv", "height");

CCSStylesheetRuleStyle('default', "#mydiv", "color", "#EEE");

答案 3 :(得分:4)

我不知道为什么其他解决方案会遍历文档的整个样式表列表。这样做会在每个样式表中创建一个新条目,效率很低。相反,我们可以简单地添加一个新的样式表,只需在那里添加我们想要的CSS规则。

style=document.createElement('style');
document.head.appendChild(style);
stylesheet=style.sheet;
function css(selector,property,value)
{
    try{ stylesheet.insertRule(selector+' {'+property+':'+value+'}',stylesheet.cssRules.length); }
    catch(err){}
}

请注意,我们可以覆盖直接在元素上设置的内联样式,方法是将“!important”添加到属性的值,除非已经存在该属性的更具体的“!important”样式声明。

答案 4 :(得分:3)

我没有足够的评论来评论,所以我会格式化答案,但这只是对问题的证明。

看起来,当样式表中定义了元素样式时,它们对于getElementById(“someElement”)是不可见的.style

此代码说明了问题... Code from below on jsFiddle

在测试2中,在第一次调用时,左边的项目值是未定义的,因此,简单的切换应该搞砸了。对于我的使用,我将内联定义我的重要样式值,但它似乎部分地破坏了样式表的目的。

这是页面代码......

<html>
  <head>
    <style type="text/css">
      #test2a{
        position: absolute;
        left: 0px;
        width: 50px;
        height: 50px;
        background-color: green;
        border: 4px solid black;
      }
      #test2b{
        position: absolute;
        left: 55px;
        width: 50px;
        height: 50px;
        background-color: yellow;
        margin: 4px;
      }
    </style>
  </head>
  <body>

  <!-- test1 -->
    Swap left positions function with styles defined inline.
    <a href="javascript:test1();">Test 1</a><br>
    <div class="container">
      <div id="test1a" style="position: absolute;left: 0px;width: 50px; height: 50px;background-color: green;border: 4px solid black;"></div>
      <div id="test1b" style="position: absolute;left: 55px;width: 50px; height: 50px;background-color: yellow;margin: 4px;"></div>
    </div>
    <script type="text/javascript">
     function test1(){
       var a = document.getElementById("test1a");
       var b = document.getElementById("test1b");
       alert(a.style.left + " - " + b.style.left);
       a.style.left = (a.style.left == "0px")? "55px" : "0px";
       b.style.left = (b.style.left == "0px")? "55px" : "0px";
     }
    </script>
  <!-- end test 1 -->

  <!-- test2 -->
    <div id="moveDownThePage" style="position: relative;top: 70px;">
    Identical function with styles defined in stylesheet.
    <a href="javascript:test2();">Test 2</a><br>
    <div class="container">
      <div id="test2a"></div>
      <div id="test2b"></div>
    </div>
    </div>
    <script type="text/javascript">
     function test2(){
       var a = document.getElementById("test2a");
       var b = document.getElementById("test2b");
       alert(a.style.left + " - " + b.style.left);
       a.style.left = (a.style.left == "0px")? "55px" : "0px";
       b.style.left = (b.style.left == "0px")? "55px" : "0px";
     }
    </script>
  <!-- end test 2 -->

  </body>
</html>

我希望这有助于说明问题。

跳过

答案 5 :(得分:2)

您可以获得任何元素的“计算”样式。

IE使用名为“currentStyle”的东西,Firefox(我假设其他“标准兼容”浏览器)使用“defaultView.getComputedStyle”。

你需要编写一个跨浏览器函数来执行此操作,或使用一个好的Javascript框架,如prototype或jQuery(在原型javascript文件中搜索“getStyle”,在jquery javascript文件中搜索“curCss”)。

如果你需要高度或宽度,你应该使用element.offsetHeight和element.offsetWidth。

  

返回的值是Null,所以如果我有Javascript需要知道某些逻辑的宽度(我将宽度增加1%,而不是特定值)

请注意,如果您为相关元素添加内联样式,它可以充当“默认”值,并且可以通过Javascript在页面加载时读取,因为它是元素的内联样式属性:

<div style="width:50%">....</div>

答案 6 :(得分:0)

我从未见过任何实际用途,但您应该考虑DOM stylesheets。但是,老实说,我觉得这太过分了。

如果您只想获取元素的宽度和高度,无论应用哪个维度,只需使用element.offsetWidthelement.offsetHeight

答案 7 :(得分:0)

This simple 32 lines gist可让您识别给定的样式表并轻松更改其样式:

var styleSheet = StyleChanger("my_custom_identifier");
styleSheet.change("darkolivegreen", "blue");

答案 8 :(得分:0)

也许尝试一下:

function CCSStylesheetRuleStyle(stylesheet, selectorText, style, value){
  var CCSstyle = undefined, rules;
  for(var m in document.styleSheets){
    if(document.styleSheets[m].href.indexOf(stylesheet) != -1){
     rules = document.styleSheets[m][document.all ? 'rules' : 'cssRules'];
     for(var n in rules){
       if(rules[n].selectorText == selectorText){
         CCSstyle = rules[n].style;
         break;
       }
     }
     break;
    }
  }
  if(value == undefined)
    return CCSstyle[style]
  else
    return CCSstyle[style] = value
}