JS 변경 페이지 색상 원본 공유

1621 단어 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> 

좋은 웹페이지 즐겨찾기