jquery随机选择器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery随机选择器相关的知识,希望对你有一定的参考价值。
// slice(0,1) -> 1 is the number of random elements from the $(selector) randomElement = $(selector).get().sort(function(){ return Math.round(Math.random())-0.5 }).slice(0,1); // use element $(randomElement).doSomething();
以上是关于jquery随机选择器的主要内容,如果未能解决你的问题,请参考以下文章