영상
개념
<!DOCTYPE html>
<html lang="ko">
<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>
<body id="target">
<label>
<input type="radio" name="color" onclick="changeColor('lightblue')">파랑색
</label>
<label>
<input type="radio" name="color" onclick="changeColor('lightgreen')">녹색
</label>
<script>
function changeColor(color) {
document.getElementById("target").style.backgroundColor = color;
}
</script>
</body>
</html>
Java
복사