Menu



Manage

파일 목록
Study_Web > 3week/Ex8-4.html Lines 26 | 672 바이트
다운로드

                        <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<script>
    function change(obj, size, color) {
        obj.style.color = color;
        obj.style.fontSize = size;
    }
</script>

<body>
    <hr>
    <button onclick="change(this, '30px', 'red')">버튼</button>
    <button onclick="change(this, '30px', 'blue')">버튼</button>
    <div onclick="change(this, '25px', 'orange')">
        여기 클릭하면 크기와 색 변경
    </div>
</body>

</html>