Сообщение от bes
|
<style>
button {
height: 50px;
}
</style>
<button style="width: 50px">click</button>
<script>
document.body.children[0].onclick = function () {
alert(this.style.width +'; ' + this.style.height)
}
</script>
|
достаточно добавить кавычки к значению (
style = "width: '50px'"), как обычно делается, и усе...