<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
window.onload = function(){
elcolor = document.getElementById('color');
elcolor.onchange = function(){
color = elcolor.value;
document.body.style.background = color;
}
}
function changeColor(){
var color = document.getElementById('color').value;
document.body.style.background = color;
}
</script>
</head>
<body>
<pre>
id를 이용하여 script로 값 전달하기
document.getElementById('color').value
태그이름을 이용하여 값 전달
aa = document.getElementsByTagName('input')
aa[0].value
</pre>
<input type = "color" id="color">
<button type = "button" onclick="changeColor()">확인</button>
</body>
</head>
</html>
