Jump to content
  • 0

Функции в JS


Slashka
 Share

Question

Запуталась с функциями в Java Script...

Если я пишу так:

var pace = 18;
var step;
var step1;

function funk1() {
step1 = pace;
funk2();
}

function funk2() {
step = step1;
elem.style.marginTop = elem.offsetTop + step + 'px'; //неважно
}

то все замечательно.

а если так:

var pace = 18;
var step;
var step1;

function funk1() {
step1 = pace;
funk2(step1);
}

function funk2(step) {

elem.style.marginTop = elem.offsetTop + step + 'px'; //неважно
}

то не работает...

В чем проблема? Что я делаю не так?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
Вроде бы параметр функции funk2 другой переменной задать нужно, а то step 2 раза повторяется

Ничего страшного, хоть 10 раз, у всего есть свои приоритеты и области видимости.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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