Jump to content
  • 0

Скрипт вычисляющий высоту контента в документе


guvatara
 Share

Question

Здравствуйте.

Я нуб в скриптинге. Я уже перелопатил Гуглю, яху и янд вместе взятые, но так и не нашел решения простого (я так думаю) вопроса.

Мне нужно чтоб скрипт определял размер (в частности высоту) контента в документе, а именно если контента больше чем влезает в окно то должен использоваться один стиль, а если контента меньше чем влезает в окно то другой. Я не думал что мне такое может пригодиться, но оказалось что куча вопросов и неудобств решается именно таким скриптом.

P.S. немного уточню под размером окна я подрузумевал броузер полностью развернутый на весь экран. Узнать размер окна я знаю как а вот как узнать размер контента пока не могу найти нигде.

Надеюсь на помощь.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

guvatara, может быть что-то, вроде такой функции Вам нужно:

/**
* @alias contentSize.
* @return {Array} Returns full width and height of the document.
*/

function contentSize() {
var body = document.compatMode &&
document.compatMode == 'CSS1Compat'
? document.documentElement
: document.body;
var width = Math.max(body.scrollWidth, body.offsetWidth);
var height = Math.max(body.scrollHeight, body.offsetHeight);
return [width, height];
};

Link to comment
Share on other sites

  • 0

Все таки почему то мой код не хочет работать.

Подскажите где я ошибся.

<body style="height="100%";">
<div id="pup1">
<div id="pup2">
<div style="height=300px;">
</div>
<div id="content">Любой текст</div>
</div>
</div>
</body>

var height = document.getElementById('content').offsetHeight;
var bodyheight = (document.body.clientHeight - 300) + "px";

if (/MSIE (7).+Win/.test(navigator.userAgent))
{ if ( height < bodyheight)
{
document.getElementById('pup1').style.height = "100%";
document.getElementById('pup2').style.height = "100%";
}
else
{
document.getElementById('pup1').style.height = "auto";
document.getElementById('pup2').style.height = "auto";
}
}

Link to comment
Share on other sites

  • 0

да. Есть такое, но к сути вопроса это не относится. Не работает именно сам скрипт, но я никак не могу понять почему. По результатам выполнения этого скрипта новые значения высоты не присваиваются элементам, а должны.

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