前端开发那些事儿

JS点击变色小案例

2020-11-15  本文已影响0人  追疯人ZFR
css部分
html,body{
  width:100%;
  height:100%;
}
html部分
<input type="button"value="点我变红"
onclick="document.body.style.background=`red`">

<input type="button"value="点我变绿"
onclick="document.body.style.background=`green`">

<input type="button"value="点我变蓝"
onclick="document.body.style.background=`blue`">

<input type="button"value="点我变白"
onclick="document.body.style.background=`#fff`">

<input type="button"value="点我变黑"
onclick="document.body.style.background=`reb(0,0,0)`">

注释

版本二(函数式写法)

css部分

html,body{
 width:100%;
 height:100%;
}

HTML部分

<button id="redBtn">红色</button>

JS部分

var redBtn=document.getElementByld("redBtn");
redBtn.onclick=function(){
 document.body.style.background="red"
}
注释内容
上一篇下一篇

猜你喜欢

热点阅读