-1
<!doctype html>
<html>
<head>
<title>ABC</title>
<meta charset="utf-8">
<script type="text/javascript">
function changebgtoblue(){
document.getElementById('bla').style.background-color="blue";
}
</script>
<style>
#bblue{
background-color:blue;
}
</style>
</head>
<body id="bla" /*style="background-color:#000;"*/>
<button id="bblue" onclick="changebgtoblue()">blue</button>
</body>
</html>