Jump to content
  • 0

getComputedStyle


Great Rash
 Share

Question

Вообще юзаю функцию getElementComputedStyle (нагуглить ее не сложно если кому интересно). С помощью этой функции пытаюсь получить значение бордера элемента (а именно ширину). В ИЕ все работает как часы (редкий случай), а вот в мозилле приходит пустота...

Стал разбираться. С сайта developer.mozilla.org (точный адрес страницы: https://developer.mozilla.org/En/DOM:window...tComputedStyle) тупо взял поюзать вот такой код:

<html>
<head>
<style>
#elem_container{
position: absolute;
left: 100px;
top: 200px;
height: 100px;
border: #f00 1px solid;
}
</style>
</head>

<body>
<div id="elem_container">dummy</div>
<div id="output"></div>

<script>
function getTheStyle() {
var elem=document.getElementById("elem_container");
var theCSSprop=document.defaultView.getComputedStyle(elem,null).getPropertyValue("border");
document.getElementById("output").innerHTML=theCSSprop;
}
getTheStyle();
</script>

</body>
</html>

Возвращает и правда пустоту.

Как только не пробовал вводить: и border-width, и borderWidth, и border-left нифига не работает...

Если кто сталкивался помогите пожалуйста.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Объект, возвращаемый методом getComputedStyle не абсолютно идентичен объекту style. Атрибуты сокращенного форматирования (типа border, border-style) в нем отсутствуют. Видимо, с этим остается смириться и пользоваться атрибутами для каждой из границ: borderBottomStyle, borderBottomWidth и прочее...

Edited by Styx
Link to comment
Share on other sites

  • 0
<html>
<head>
<title>getComputedStyle</title>
<style>
#elem_container{
position: absolute;
left: 100px;
top: 200px;
height: 100px;
border: #f00 1px solid;
}
</style>
</head>

<body>
<div id="elem_container">dummy</div>
<div id="output"></div>

<script>
function getTheStyle() {
var elem = document.getElementById("elem_container");
var currStyle = (elem.currentStyle) ? elem.currentStyle : getComputedStyle(elem, '');
var bordr = currStyle.borderBottomWidth + " " + currStyle.borderBottomStyle + " " + currStyle.borderBottomColor;
elem.innerHTML = bordr;
}
getTheStyle();
</script>

</body>
</html>

Edited by Styx
Link to comment
Share on other sites

  • 0

Всем спасибо за помощь. А вот чего я нагуглил попутно:

<html>
<head>
<style>
#elem_container{
position: absolute;
left: 100px;
top: 200px;
height: 100px;
border: #f00 1px solid;
}
</style>
</head>

<body>
<div id="elem_container">dummy</div>
<div id="output"></div>

<script>
function getTheStyle() {
var elem=document.getElementById("elem_container");
var theCSSprop=document.defaultView.getComputedStyle(elem,null).getPropertyValue("border-bottom-width"); // выведет "10px"
document.getElementById("output").innerHTML=theCSSprop;
}
getTheStyle();
</script>

</body>
</html>

Так что не обязвтельно писать а ля javascript стайл.

2Nekromancer:

А эта страничка у меня в закладках. Оттуда я и брал скрипт изначально. Но что-то там туманно написано...

Edited by Great Rash
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy