私はCodepenを試していますが、Spanの背景色をHTMLのName属性の値に変更したいと考えています。私はこれまで午前どこ背景属性の値をName属性の値に変更する
次Codepenは示しています。
私は間違っているつもりですhttps://codepen.io/anon/pen/JOymve?editors=1010
<div class="card-body">
<span id="community" class="card-community-tag" Name="test">Community 1</span>
<span class="card-community-tag">Community 2</span>
</div>
document.load(function changeBackground() {
var communityName = document.getElementById("community");
if (communityName.getAttribute("Name") == "test") {
communityName.style.backgroundColor = "red";
}
});
?
最終的な目標は、JSがそのスパンの名前属性をチェックして、そのスパンの背景色を決定することです。
おかげで、代わりにdocument.load()
の
トム
移動をdocument.load' https://codepen.io/koliada 'から/ pen/POKVBP?editors = 1111 –