я пытаюсь изменить свою голову и цвета кнопка с помощью этого кодахранения изменило цвет после обновления
<div class="ann-right">
<button id="red" onclick="color1('#D91E18'), color2('#96281B')" class="tooltip color" title="Red"></button>
<button id="green" onclick="color1('#3FC380'), color2('#00B16A')" class="tooltip color"title="Green" ></button>
<button id="blue" onclick="color1('#5BBBFF'), color2('#22A7F0')" class="tooltip color" title="Blue"></button>
</div>
<script>
function color1(col){
document.getElementById("head").style.backgroundColor=col;
}
function color2(col){
document.getElementById("submit-search").style.backgroundColor=col;
document.getElementById("submit-post").style.backgroundColor=col;
}
</script>
Как сохранить цвет после страницы обновилась?
http://stackoverflow.com/questions/31208572/changing-background -colour-with-javascript-and-keep-it-after-refreshing-the-p | Я пытался это использовать. но все равно не сохраняйте цвет .. –
Где элементы, которые вы пытаетесь создать, с идентификатором 'head' и' submit-search'? –
@DavidThomas 'submit-search' и' submit-post' для кнопки и точно 'head' для' id = "head" ', цвет успешно изменен, но я пытаюсь спросить, как сохранить измененный цвет после обновления страницы? –