Jump to content
  • 0

ошибка в джаваскрипте


MasterP
 Share

Question

собственно вот:

<script>
onload = onresize = function() {
var f = document.getElementById('login-box');
m = (document.body.clientWidth/2)+(((document.body.clientHeight*0.9-20)*3/2)/2)-320;
l = document.body.clientWidth*0.95-320;
f.style.marginLeft = document.body.clientHeight/document.body.clientWidth < .67 ? '[m]' : '[l]';
}
</script>

нужно, чтобы элементу login-box приписывался стиль margin-left, подсчитываемый функциями l или m в зависимости от выполнения условия f. и не спрашивайте, зачем)

так как почти не шарю в джаваскрипте, ошибка, скорее всего, в скобках.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Как-то так должно быть


<script type="text/javascript">
onload = onresize = function() {
var m = (document.body.clientWidth/2)+(((document.body.clientHeight*0.9-20)*3/2)/2)-320;
var l = (document.body.clientWidth*0.95)-320;
var f = document.getElementById('login-box').style.marginLeft = (document.body.clientHeight/document.body.clientWidth) < .67 ? m+'px' : l+'px';
}
</script>

Link to comment
Share on other sites

  • 0

Зачем ты взял умножение в скобки и зачем завёл переменную f?

ctrl+shift+j в файрфоксе помогает искать ошибки

Если вопрос ко мне, то в переменной - l, отрицательное число оставалось после вычисления. Скобки в данном случаем обеспечили положительный результат вычисления.

Можно было и так написать:


<script type="text/javascript">
onload = onresize = function() {
return document.getElementById('login-box').style.marginLeft = document.body.clientHeight/document.body.clientWidth < .67 ? (document.body.clientWidth/2)+(((document.body.clientHeight*0.9-20)*3/2)/2)-320+'px' : (document.body.clientWidth*0.95)-320+'px';
};
</script>

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