码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-09-30 21:00:14      阅读:155      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!