发表于: 2020-07-06 23:23:17
1 1189
今天完成的事情:
学习使用if.else语句,switch语句,运算符的使用
遇到的问题:
if.switch.三元运算符能具备相似的效果,其有什么区别
js语法多,难以理解,
vscode代码中字体的背景颜色不一样,如:红黄蓝等,其中黄色文字是关键字吗
练习:改变背景,字体颜色
<script>
var select = document.querySelector('select');
var html = document.querySelector('.output');
select.onchange = function () {
var choice = select.value;
switch (choice) {
case 'black':
update('black', 'white');
break;
case 'white':
update('white', 'black');
break;
case 'purple':
update('purple', 'white');
break;
case 'yellow':
update('yellow', 'darkgray');
break;
case 'psychedelic':
update('lime', 'purple');
break;
}
}
function update(bgColor, textColor) {
html.style.backgroundColor = bgColor;
html.style.color = textColor;
}
明天的计划:
理解js的对象,dom
评论