私が正しくあなたの代わりに、その一致するすべての要素が影響を受けることになる単一の要素が、CSSルールを変更したくないことを理解していますか?ここでの例では、動的に青色にあなたの例ではスタイルを変更する方法は次のとおりです。
<html>
<head>
<style>
div.box{
width:100px;
height:100px;
background-color:#FF2400;
}
</style>
<script>
var sheet = document.styleSheets[0] // Of course if you have more than one sheet you'll have to find it among others somehow
var rulesList = sheet.cssRules || sheet.rules // some older browsers have it that way
var rule = rulesList[0] // same for rules - more than one and you'll have to iterate to find what you need
rule.style.backgroundColor = 'blue' // and voila - both boxes are now blue
</script>
</head>
<body>
<div class="box"></div>
<div class="box"></div>
</body>
</html>
ジャストボタンを「クリック」イベントハンドラとしてこの作品を割り当て、あなたが設定されています。
jquery:http://api.jquery.com/css/を使用するか、DOMを使用して次のようなスタイルを変更します。document.body.yourelementname.style.backgroundColor = "#FECE03" – renard
ここで役立つものは何ですか? – iambriansreed