wiki:jazz/11-02-17
close Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_fs.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.

2011-02-17

jQuery

  • Q: jQuery 如何做 reload 機制呢?
  • [參考] javascript sleep(), wait(), and use of setTimeout()
  • 用 setTimeout('函數',毫秒數) 來設定單次觸發。
    $(document).ready(function() {
      setTimeout('addDot()',1000);
    });
    function addDot() {
      $('#dots').append('.');
      setTimeout('addDot()',1000);
    }
    
Last modified 15 years ago Last modified on Feb 18, 2011, 9:32:38 AM