Ребят,что здесь не так?
Вот код:
<html>
<style type="text/css">
.button{
padding:10px;
text-decoration:none;
font-size:16px;
font-family:arial;
font-weight:bold;
border:1px solid #c9c2c1;
}
</style>
<body>
<script language="JavaScript" type="text/javascript">
document.getElementsByClassName("button").style.ba ckground='#000000';
</script>
<a href="#" class="button">Click me!</a>
</body>
</html>
Линкер ссылается на то, что не найден объект background . Точнее пишет это: "Uncaught TypeError: Cannot set property 'background' of undefined ". Что делать?
|