var(…)
JavaScript (プレーンまたは jQuery) を使用して、CSS カスタム プロパティ (スタイルシートでアクセスされるもの) をどのように取得および設定しますか?
ボタンをクリックすると、通常のfont-weight
プロパティが変更されますが、カスタム--mycolor
プロパティは変更されません。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<style>
body {
--mycolor: yellow;
background-color: var(--mycolor);
}
</style>
</head>
<body>
<p>Let's try to make this text bold and the background red.</p>
<button onclick="plain_js()">Plain JS</button>
<button onclick="jQuery_()">jQuery</button>
<script>
function plain_js() {
document.body.style['font-weight'] = 'bold';
document.body.style['--mycolor'] = 'red';
};
function jQuery_() {
$('body').css('font-weight', 'bold');
$('body').css('--mycolor', 'red');
}
</script>
</body>
</html>