자바 스 크 립 트 는 div 배경 색 을 어떻게 바 꿉 니까?

3510 단어 JavaScript

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
    <style>
        div{
            width: 100px;
            height: 100px;
            background: #000;
        }
    style>
head>
<body>
<div id="d">

div>
<button id="c" value="   " οnclick="change()"> button>
<script>
    var b =document.getElementById('c');
    var i= document.getElementById('d');
    function change(){
        i.style.backgroundColor='pink';
    }
script>
body>
html>
        
      document.bgColor='pink';             ;
i.style.backgroundColor='pink';      div     。

좋은 웹페이지 즐겨찾기