6

在下面的代码中,我已经说明了我想要实现的目标...通过向现有的 CSS 类添加新规则来改变它。

<head>
<style> 

h4.icontitle
{font-size: 22pt;}

</style>
</head>
<body>
<script type="text/javascript">

textpercent = 84;
document.styleSheets[1].cssRules.['h4.icontitle'].style.setProperty('-webkit-text-size-adjust', textpercent+'%', null);

</script>

<h4> hello </h4>

</body>

这是针对在不同尺寸屏幕上运行的站点的预处理元素。结果将是...

h4.icontitle
{font-size: 22pt;
-webkit-text-size-adjust:84%;}

检查 DOM 时可以看到。

任何想法都将受到欢迎。仅限 Javascript - 这里没有 JQuery...

解决了。

经过大量的试验和错误,这是一个允许 javascript 将样式直接插入 CSS 的工作功能

function changeCSS(typeAndClass, newRule, newValue)
{
    var thisCSS=document.styleSheets[0]
    var ruleSearch=thisCSS.cssRules? thisCSS.cssRules: thisCSS.rules
    for (i=0; i<ruleSearch.length; i++)
    {
        if(ruleSearch[i].selectorText==typeAndClass)
        {
            var target=ruleSearch[i]
            break;
        }
    }
    target.style[newRule] = newValue;
}

调用

    changeCSS("h4.icontitle","backgroundColor", "green");

希望其他人会发现这是在纯 javascript 中使用 CSS 中的变量的有用方法。

4

4 回答 4

4

此功能非常适合我的网站。

function changeCSS(typeAndClass, newRule, newValue)
{
    var thisCSS=document.styleSheets[0]
    var ruleSearch=thisCSS.cssRules? thisCSS.cssRules: thisCSS.rules
    for (i=0; i<ruleSearch.length; i++)
    {
        if(ruleSearch[i].selectorText==typeAndClass)
        {
            var target=ruleSearch[i]
            break;
        }
    }
    target.style[newRule] = newValue;
}

调用

    changeCSS("h4.icontitle","backgroundColor", "green");
于 2013-08-24T21:53:43.157 回答
2
/**
Use this to update style tag contents
**/
var css = 'h1 { background: grey; }',
head = document.getElementsByTagName('head')[0],
style = document.createElement('style');

style.type = 'text/css';
if (style.styleSheet){
  style.styleSheet.cssText = css;
} else {
  style.appendChild(document.createTextNode(css));
}

head.appendChild(style);

要使用 body 中的元素,请使用 querySelector 根据其 CSS 标识符定位元素。这应该可以帮助您 https://developer.mozilla.org/en-US/docs/Web/API/document.querySelector

var el = document.querySelector(".icontitle");
el.setAttribute("style","-webkit-text-size-adjust:84%");

或者你可以准备一个css片段并有条件地使用它例如:如果“new_css”是新的变化,那么

/**css code in style tag**/
.icontitle{

  /**style at initial stage**/

}
.icontitle-new-modified{

 /**modified css style at later stage**/

}

//after a condition is satisfied
el.setAttribute("class","icontitle-new-modified");
于 2013-08-24T19:30:49.127 回答
1

我把一个例子放在一起,应该适合你的需要

演示jsFiddle

// this gets all h4 tags
var myList = document.getElementsByTagName("h4"); // get all p elements

// this loops through them until it finds one with the class 'icontitle' then it assigns the style to it
var i = 0;
while(i < myList.length) {
    if(myList[i].className == "icontitle") {
        myList[i].style.color="red";
    }
    i++;
}
于 2013-08-24T20:09:43.333 回答
-2

试试这段代码

$('h4.icontitle').css('-webkit-text-size-adjust','84%');
于 2013-08-24T18:56:34.280 回答