我想根据主题更改标签和网格线的颜色。。这是我更改主题的代码
function mystylesheet () { console.log(currentTheme) if(checkBox.checked){
document.getElementById("mystylesheet").setAttribute('href', "css/theme/dark.css");
window.localStorage.setItem('data-theme', 'dark'); } else {
document.getElementById("mystylesheet").setAttribute('href', "css/theme/light.css")
window.localStorage.setItem('data-theme', 'light'); } changeImage(); }
这是为了更改chatjs中的勾号颜色或标签颜色
var lableColor = 'black'; //Lables color if(currentTheme === 'dark'){ lableColor = 'white';}else{lableColor = 'black'}
现在唯一的问题是,hea在刷新页面后正在更改,而不是立即更新到web开发人员。。。我如何做到这一点
options:{
scales:{
y:{
ticks:{
color: 'lableColor'
}
},
x: {
ticks:{
color: 'lableColor'
}
}
}
}
暂无答案!
目前还没有任何答案,快来回答吧!