首页 > 其他 > 详细

三个按钮 点击可变三种颜色

时间:2016-09-30 20:59:40      阅读:170      评论:0      收藏:0      [点我收藏+]

技术分享

技术分享

技术分享

 

 

<html>
  <head>
  <meta charset="utf-8">
    <meta name="generator"
    content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" />
    <title></title>
    <style>
    #div1{
    width:100px;
    height:100px;
    background:red;
    }
    </style>
    <script>
    function toYellow(){
      var oDiv=document.getElementById(div1);
      oDiv.style.background=yellow;
    }
    
    function toGreen(){
      var oDiv=document.getElementById(div1);
      oDiv.style.background=green;
    }
    function toBlue(){
      var oDiv=document.getElementById(div1);
      oDiv.style.background=blue;
    }
    </script>
  </head>
  <body>
  <input type="button" value="变黄" onclick="toYellow()"/>
  <input type="button" value="变绿" onclick="toGreen()"/>
  <input type="button" value="变蓝" onclick="toBlue()"/>
  <div id="div1"></div>
  </body>
</html>

 

三个按钮 点击可变三种颜色

原文:http://www.cnblogs.com/Yimi/p/5924641.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!