divのクラスをいつでも変更したいのですが、クラスには何のクラスもありません。 divにクラス "mystyle"がある場合は、それを "mystyle1"に変更したいと思います。私のコードはこれです:javascript:条件にあるclassListを置き換えます。
<!DOCTYPE html>
<html>
<head>
<style>
.mystyle {
width: 300px;
height: 50px;
background-color: coral;
color: white;
font-size: 25px;
}
.mystyle1 {
width: 100px;
height: 100px;
background-color: black;
color: coral;
font-size: 30px;
}
</style>
</head>
<body>
<p>Click the button to change the style class from DIV.</p>
<button onclick="myFunction()">Try it</button>
<div id="myDIV" class="mystyle">
I am a DIV element
</div>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.classList.contains("mysyle")) {
x.classList.replace("mystyle", "mystyle1");
} if (x.classList.contains("mysyle1")) {
x.classList.replace("mystyle1", "mystyle");
}
}
</script>
</body>
</html>
我々は湖底を押すと、それは、CSSスタイルをいつでも変更することがあります。しかし、それはしません。 問題は、条件付き(classList.contains)とclassList.replaceが混在していることがあると思います。
私の問題は何ですか?ありがとうございました。
です:{ x.classList(x.classList.contains( "mysyle"))場合。 replace( "mystyle"、 "mystyle1"); ( "mystyle1"、 "mystyle"); } } –
今すぐ試してみてください。それを修正しました。 –