jquery随机选择器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery随机选择器相关的知识,希望对你有一定的参考价值。

  1. // slice(0,1) -> 1 is the number of random elements from the $(selector)
  2. randomElement = $(selector).get().sort(function(){
  3. return Math.round(Math.random())-0.5
  4. }).slice(0,1);
  5.  
  6. // use element
  7. $(randomElement).doSomething();

以上是关于jquery随机选择器的主要内容,如果未能解决你的问题,请参考以下文章