重现问题的步骤:
Settings
选择Continue where you/I left off
下的On startup
。现在您看到复选框已选中,但textarea不是彩色的 我在Windows 10的最新版本的Chrome和Opera中尝试过它。我对Safari不确定,但它的行为方式可能相同。
问题:
答案 0 :(得分:0)
尝试
window.onload = function() {
document.getElementById('colorsToggle').onchange = function() {
document.getElementById('textField').classList.toggle('tan');
}
document.getElementById('textField').classList.toggle(document.getElementById('colorsToggle').checked ? "tan" : "white");
};