Показать сообщение отдельно
  #3 (permalink)  
Старый 15.12.2013, 14:42
Профессор
Отправить личное сообщение для oneguy Посмотреть профиль Найти все сообщения от oneguy
 
Регистрация: 31.05.2012
Сообщений: 396

Вот рабочий пример.
<!DOCTYPE html>
<html>
<head>
<title></title>
<style id="bodyBgColor" type="text/css">
body {
  background-color: white;
}
</style>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
</head>
<body>
<script type="text/javascript">
function changeBgColor() {
  var color=Math.floor(Math.random()*(1<<24));
  var r=color>>16, g=(color>>8)&0x0000ff, b=color&0x0000ff;
document.getElementById("bodyBgColor").sheet.cssRules[0].style.backgroundColor="rgb("+r+","+g+","+b+")";
}
</script>
<div>
<button onclick="changeBgColor()">Изменить цвет фона</button>
</div>
</body>
</html>
Ответить с цитированием