Jump to content
  • 0

проблема с setInterval


olejan
 Share

Question

есть функция

function content(){

$.ajax({

url: "index.php",

cache: false,

success: function(html){

$("#content").html(html);

}

});

}

$(document).ready(function(){

content();

setInterval('content()', 20000);

});

запрос должен происходить каждые 20 сек,но он происходит каждую секунду в независимости от того какое время я бы не ставил, а также ужасно загружается процессор. в чем проблема?

Edited by olejan
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

есть функция

function content(){

$.ajax({

url: "index.php",

cache: false,

success: function(html){

$("#content").html(html);

}

});

}

$(document).ready(function(){

content();

setInterval('content()', 20000);

});

запрос должен происходить каждые 20 сек,но он происходит каждую секунду в независимости от того какое время я бы не ставил, а также ужасно загружается процессор. в чем проблема?

function content(){

$.ajax({

url: "index.php",

cache: false,

success: function(html){

$("#content").html(html);

}

}); var t = setTimeout("content()", 20000);

}

$(document).ready(function(){

content();

});

Link to comment
Share on other sites

  • 0
var t = setTimeout("content()", 20000);

насколько я помню, это работает не везде. если у функции нет аргументов, то см. сообщение Veseloff

а если нужно передать аргументы, то можно использовать что-то вроде этого:


setInterval(function(){
content(arg1,arg2)
},1000);

Link to comment
Share on other sites

  • 0

так вродя и я о том же... setInterval() вызывает объект Window, arg1 и arg2 значит в глобальной зоне видимости?... а если они там, зачем тогда огород городить, они и внутри content() видны? :rolleyes:

или моя сильно умньячьает????

  • Like 1
Link to comment
Share on other sites

  • 0

так вродя и я о том же... setInterval() вызывает объект Window, arg1 и arg2 значит в глобальной зоне видимости?... а если они там, зачем тогда огород городить, они и внутри content() видны? :rolleyes:

или моя сильно умньячьает????

понял, я крепко протупил :)

но тогда вопрос: почему в этом примере я передаю локальную переменную и функция ее видит?

Edited by hedgehog
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