实时输出
选择主题:
White
Black
Purple
Yellow
Psychedelic
这是我的网站
可编辑代码
按下 Esc 以将焦点移出代码区(Tab 键添加制表符)。
const select = document.querySelector('select'); const html = document.querySelector('.output'); select.addEventListener('change', () => { const choice = select.value; // ADD SWITCH STATEMENT } function update(bgColor, textColor) { html.style.backgroundColor = bgColor; html.style.color = textColor; }