Jump to content
  • 0

Ширина Div-a через JS


Marlik
 Share

Question

В общем мне надо чтоб при загрузке страницы, заружался определенный яваскрипт который выставлял бы ширину определенного дива на нужную мне величину! Но как это сделать я не знаю так же как я делал с картинками не получается :D кто разбирается JS помогите плиз!

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0
Спасибо большое помогло но только в ие и опере а как в нн и фф сделать кто нибудь знает?:)

Может type у script указать?

Не непомогло=) но все равно спасибо может у кого нить еще есть идеи?

Link to comment
Share on other sites

  • 0
Не непомогло=) но все равно спасибо может у кого нить еще есть идеи?

Ты не поверишь, но фаерфоксу нужно что-бы было содержимое элемента, иначе getElementById не возвращает его :) Просто посавь внутрь  

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>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<script src="script.js" type="text/javascript"></script>
</head>
<body onload="div_width()">
<div id="header"> </div>
</body>
</html>

Где файл script.js соддержит

function div_width() {
var wid = screen.width;
var wid_p = wid-221;
document.getElementById("header").style.width = wid_p;
}

А фаил style.css

html,body {
font-family: Arial, Verdana, Helvetica, sans-serif;
margin: 0px;
padding: 0px;
}
#header {
background-color: #000;
height: 100px;
}

И фаерфокс и нетскейпнавигатор упорно отказываются работать=(

Link to comment
Share on other sites

  • 0

Вот так работает:

<style>
#yo {height: 40px; background: red; color: red;}
</style>
<div id="yo">1</div>

<script>
document.getElementById("yo").style.width = "256px";
</script>

function div_width() {

var wid = screen.width;

var wid_p = wid-221;

document.getElementById("header").style.width = wid_p;

}

Здесь у тебя еще одна ошибка: width = wid_p.toString()+'px';

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