在下面的代码中,我已经说明了我想要实现的目标...通过向现有的 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 中的变量的有用方法。