码迷,mamicode.com
首页 > Web开发 > 详细

jquery刷新数据随机排列

时间:2019-03-19 12:03:43      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:插入代码   info   keyword   else   lis   div   function   text   color   

jquery 随机排列<li> 在线等 急。。。

ul里 有六个li 每次刷新 li 的顺序就随机排列一次 求大神指点.....

代码如下:不会插入代码 只能截图了
技术图片
<!DOCTYPE HTML>
<html>
<head>
<meta charset=UTF-8>
<meta name="keywords" content="白菜编辑部">
<title>白菜编辑部</title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
    jQuery (function ($)
    {
        var p = $ (div.icList>ul.aaa);
        var array = p.children (li);
        array.sort (function ()
        {
            var rand = Math.random ();
            if (rand > 0.5)
            {
                return 1;
            }
            else
            {
                return -1;
            }
        });
        array.each (function (i, dom)
        {
            p.append ($ (this));
        });
    });
</script>
</head>
<body>
    <div class="icList">
        <ul class="aaa">
            <li>111111</li>
            <li>222222</li>
            <li>333333</li>
            <li>444444</li>
            <li>555555</li>
            <li>666666</li>
        </ul>
    </div>
</body>
</html>

 

还有一种方法没试过也分享下

$(".aaa li").each(function(){
            if(parseInt(Math.random()*2)==0){
                $(this).prependTo($(this).parent());
            }    
    });

 

 

 

jquery刷新数据随机排列

标签:插入代码   info   keyword   else   lis   div   function   text   color   

原文地址:https://www.cnblogs.com/li-sir/p/10557626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!