用jQuery按顺序显示元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用jQuery按顺序显示元素相关的知识,希望对你有一定的参考价值。
http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-display-elements-sequentially-with-jquery/
// Wrapping, self invoking function prevents globals (function() { // Hide the elements initially var lis = $('li').hide(); // When some anchor tag is clicked. (Being super generic here) $('a').click(function() { var i = 0; // FadeIn each list item over 200 ms, and, // when finished, recursively call displayImages. // When eq(i) refers to an element that does not exist, // jQuery will return an empty object, and not continue // to fadeIn. (function displayImages() { lis.eq(i++).fadeIn(200, displayImages); })(); }); })();
以上是关于用jQuery按顺序显示元素的主要内容,如果未能解决你的问题,请参考以下文章
csharp 在Swashbuckle Swagger中,此片段允许按字母顺序显示操作。