Jump to content
  • 0

как в IE вычислить ширину div`a?


4ert
 Share

Question

Короче читаю тут:

http://www.xulplanet.com/references/objref...DivElement.html

Пробую:

scrollWidth
offsetWidth
clientWidth

В Opera все отлично определяется, в ie везде 0 :)((((((((((

сцуко, мя это детище microsoft до суецида скоро доведет :)((

замучился уже....при том приходятся бегать к другому компу чтоб посмотреть как он в ie то, ибо себе я этот ужас не ставил :)(((

Подскажите плиз, кто знает.....

Link to comment
Share on other sites

15 answers to this question

Recommended Posts

  • 0

во-первых: незачем здесь заниматься мультипостингом, так как существует специальная опция для редактирования сообщения. настоятельно рекомендую пользоваться ей

htmlbookeditoptionmb7.jpg

во-вторых: по сабжу, узнать ширину можно, например так:

html

<div id='object' style="width:90%"></div>

js:

alert(getElementById('object').style.width);

Link to comment
Share on other sites

  • 0
незнаю. самому интересно стало :)

расскажи :)

Это элементарно! ?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>#</title>
<style type="text/css">
div { width:90%;height:200px;background-color:red; }
</style>
</head>
<body>
<div><!-- --></div>
<script type="text/javascript">
<!--
alert('Ширина блока = ' + document.getElementsByTagName('div')[0].clientWidth + 'px');
-->
</script>
</body>
</html>

Link to comment
Share on other sites

  • 0
alert('Ширина блока = ' + document.getElementsByTagName('div')[0].clientWidth + 'px');

а если DIV за пределы видимой части экрана вылазит?

document.getElementsByTagName('div')[0].clientHeight + 'px';

драcти! чего енто ради readn-only изменять лезем? я не спорю что в опере или мозиле или ашо где это возможно, но DOM он и в африке DOM!

Визуальные параметры лучше всего изменять через стили:

var div = document.getElementById("my_div"); 
div.style.width = 128+"px";
div.style.height = 128+"px";

Link to comment
Share on other sites

  • 0
alert('Ширина блока = ' + document.getElementsByTagName('div')[0].clientWidth + 'px');

а если DIV за пределы видимой части экрана вылазит?

Это не играет роли. Мы все равно узнаем ширину блока. Вопрос стоял узнать ширину элемента, а не установить е?.

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