Пример!
<html>
<head>
<meta charset="utf-8">
<style>
.firstclass {
background-image:url (1.jpg);
width:100px;
height:100px;
}
.secondclass {
width:50px;
height:50px;
}
</style>
</head>
<body>
<div class="firstclass"> </div>
<div class="secondclass"> </div>
</body>
</html>
В консоле:
document.getElementsByClassName('firstclass')[0].style.width = document.getElementsByClassName('secondclass')[0].style.width;
Не изменяет значение ,
если добавить <div class="secondclass" style="width:50px"> </div>
Все работает! Можно ли сделать это не прописывая значения style в тег ? Ведь значение уже указано.
Последний раз редактировалось bravoo, 23.12.2016 в 18:47.
|