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随机选择器的主要内容,如果未能解决你的问题,请参考以下文章
如何优化 jQuery tag:contains() 选择器?
jQuery 选择器输入 [type=text]:nth-child(2) 不工作
JavaScript之jQuery-2 jQuery选择器(jQuery选择器基本选择器层次选择器过滤选择器表单选择器)