接着选择js的背景颜色选择
打开Eclipse里面试一下就知道了 ,我就写了个大概
望采纳哦
很简单的:如果你是在学习JS、遇到了各种问题,那么你一定要来这个企鹅裙,前面前面是二九六,中间是五九一,最后面就是二九0,来这里可以得到专人解答,期待你的加入!!!
<div id="txt">我是要改变的文字</div>
<script>
//首先咱们找到要改变的文字
var txt = document.getElementById("txt")
//然后设置一个标记flag
var flag = true
//然后点击这个div或者按钮
txt.onclick = function(){
//改变里面文字颜色
if(flag){
this.style.color = "red"
flag = false
}else{
this.style.color = "#000"
flag = true
}
}
</script>
window.onload=function(){var h=new Date().getHours()
var o=document.documentElement||document.body
if(h<8){
o.style.backgroundColor="red"
o.style.color="white"
}else if(h<16){
o.style.backgroundColor="green"
o.style.color="black"
}else{
o.style.backgroundColor="yellow"
o.style.color="brown"
}
}