2016-11-09 87 views

回答

0

你可以試試這個。 $(window).ready(function(){})將不會調用,直到整個頁面準備就緒並且setInterval()將在2秒後調用。這裏不需要

$(window).ready(function(){ 
 
    setInterval(function(){ 
 
    $('div').addClass("test") 
 
    }, 2000); 
 

 
});
<div>Class 
 
</div> 
 
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>