• sort


    <html>
    <head>
        <title>select_sort</title>
        <script type="text/javascript" src="../jquery-1.10.1.js"></script>
    
    </head>
    <body>
        <ol id="sort">
            <li>22</li>
            <li>23</li>
            <li>2</li>
            <li>100</li>
        </ol>
        <hr />
        <ol id="result"></ol>
    </body>
    <script type="text/javascript">
        $(document).ready(function () {
            var minLi;
            $("#sort li").each(function (i) {
                if (i == 0) {
                    minLi = $(this).clone();
                    $(this).clone().appendTo($("#result"));
                } else {
                    if (minLi.html() * 1 >= $(this).clone().html() * 1) {
                        minLi = $(this).clone();
                        $(this).clone().prependTo($("#result"));
                    }
                    else {
                        $(this).clone().appendTo($("#result"));
                    }
                }
            });
        })
    </script>
    </html>
  • 相关阅读:
    spring的常用配置
    aop切入点表达式
    代理模式
    hibernate的常用配置
    正则表达式
    Java配置
    性能提升
    创建vue3 项目
    manjaro
    单调队列
  • 原文地址:https://www.cnblogs.com/muyoushui/p/3318308.html
Copyright © 2020-2023  润新知