Home >Web Front-end >JS Tutorial >How to use jquery plug-in jTimer (jquery timer)_jquery

How to use jquery plug-in jTimer (jquery timer)_jquery

WBOY
WBOYOriginal
2016-05-16 17:07:481588browse

Copy code The code is as follows:

(function ($) {
$.extend ({
timer: function (action,context,time) {
var _timer;
if ($.isFunction(action)) {
(function () {
          _timer = setInterval( function () {
if (!action(context)) {
clearInterval(_timer);
}
                       }, time); > }
});
})(jQuery);



Copy code The code is as follows:




   
    画布
   
   
   
   


   

       
   



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn