欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS改变页面颜色源码分享

程序员文章站 2024-02-05 20:09:46
我们先来看下具体的演示效果图 以下就是完整的html页面代码,大家可以测试下。

我们先来看下具体的演示效果图

JS改变页面颜色源码分享

以下就是完整的html页面代码,大家可以测试下。

<!doctype html> 
<html lang="en"> 
<head> 
  <meta charset="utf-8"> 
  <title>document</title> 
  <style> 
    .big_box{ 
      width: 500px; 
      height: 500px; 
      border: 1px solid black; 
    } 
    .big_box input{ 
      margin-left: 60px; 
    } 
  </style> 
  <script> 
    function change_red(){ 
      var red=document.getelementbyid("change_style"); 
      red.style.backgroundcolor="red"; 
    } 
    function change_blue(){ 
      var blue=document.getelementbyid("change_style"); 
      blue.style.backgroundcolor="blue"; 
    } 
    function change_green(){ 
      var green=document.getelementbyid("change_style"); 
      green.style.backgroundcolor="green"; 
    } 
  </script> 
</head> 
<body> 
  <div class="big_box" id="change_style"> 
    <input type="button" value="变为红色" onclick="change_red()"> 
    <input type="button" value="变为蓝色" onclick="change_blue()"> 
    <input type="button" value="变为绿色" onclick="change_green()"> 
  </div> 
</body> 
</html>