duanmei1946 2016-07-27 10:03
浏览 32
已采纳

基于内容的JQuery排序 - 不工作 -

I have a multiple Divs that I want to sort using the JQuery sort function based on the product name attribute inside the product. However, when I click to run the function, all the divs will suddenly disappear, when I inspected to see the errors, there was no error displayed.

Kindly help me know what's the issue.

Here's my JQuery function and call:

<script type="text/javascript">
    $(document).ready(function(){
        $divs = $("div.section-item");
        $("#asc").on("click", function(){
            var alphabetically = $divs.sort(function(a, b){
                return $(a).find(".name").text() > $(b).find("name").text();
            });
            $("#section-item").html(alphabetically);           
        });
    });
</script>

This is the container with all the Divs:

<div id="block-section-item">
<div id="bdi-button">
    <button type="submit" id="asc" class="rec">Nom</button>
</div>
<div id="section-item">
    <?php
    include 'Include/__Class/Cls_Product.php';
    $product = new ClsProduct($bdd);
    $products = $product->DisplayAllProducts();

    foreach( $products as $row){
        echo'<div class="section-items">
                <span class="section-items-img">
                    <img src="Image/clio-full.jpg">
                </span>
                <span class="section-items-bottom">
                <span class="section-item-text">';
                echo '<h4 class="name">'.$row['Product_name'].'</h4>';
                echo '<h4 class="price">'.$row['Product_price'].'</h4>';
        echo'<span class="section-item-icon">
        <span class="voir-item"><a href="'.$_SERVER['PHP_SELF'].'?id='.$row["Product_id"].'"></a></span>
        <span class="middle-item"></span>
        <span class="nakrih-item"><a href="'.$_SERVER['PHP_SELF'].'?id='.$row["Product_id"].'"></a></span>
        </span>
        </span>';
        echo'</div>';
    }
    ?>                            
</div>
</div>
  • 写回答

1条回答 默认 最新

  • dqkkrt8860 2016-07-27 10:13
    关注

    Try that:

    HTML:

    <div id="block-section-item">
        <div id="bdi-button">
            <button type="submit" id="asc" class="rec">Nom</button>
        </div>
        <div id="section-item">
            <div class="section-items">
                <span class="section-items-img">
                    <img src="Chrysanthemum.gif">
                </span>
                <span class="section-items-bottom">
                    <span class="section-item-text"><h4 class="name">Product_name2</h4><h4 class="price">22</h4><span class="section-item-icon">
                            <span class="voir-item"><a href="/test/index.php?id=2"></a></span>
                            <span class="middle-item"></span>
                            <span class="nakrih-item"><a href="/test/index.php?id=2"></a></span>
                        </span>
                    </span></span></div><div class="section-items">
                <span class="section-items-img">
                    <img src="Chrysanthemum.gif">
                </span>
                <span class="section-items-bottom">
                    <span class="section-item-text"><h4 class="name">Product_name1</h4><h4 class="price">11</h4><span class="section-item-icon">
                            <span class="voir-item"><a href="/test/index.php?id=1"></a></span>
                            <span class="middle-item"></span>
                            <span class="nakrih-item"><a href="/test/index.php?id=1"></a></span>
                        </span>
                    </span></span></div><div class="section-items">
                <span class="section-items-img">
                    <img src="Chrysanthemum.gif">
                </span>
                <span class="section-items-bottom">
                    <span class="section-item-text"><h4 class="name">Product_name3</h4><h4 class="price">33</h4><span class="section-item-icon">
                            <span class="voir-item"><a href="/test/index.php?id=3"></a></span>
                            <span class="middle-item"></span>
                            <span class="nakrih-item"><a href="/test/index.php?id=3"></a></span>
                        </span>
                    </span></span></div>                            
        </div>
    </div>
    

    Javascript:

    $(document).ready(function () {
        $divs = $(".section-items");
        $("#asc").on("click", function () {
    
            var alphabetically = $divs.sort(function (a, b) {
                return $(a).find("[class='name']").text() > $(b).find("[class='name']").text();
            });
            $("#section-item").html(alphabetically);
        });
    });
    

    jsfiddle:

    https://jsfiddle.net/bs49L18k/2/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥23 (标签-bug|关键词-密码错误加密)
  • ¥66 比特币地址如何生成taproot地址
  • ¥20 数学建模数学建模需要
  • ¥15 关于#lua#的问题,请各位专家解答!
  • ¥15 什么设备可以研究OFDM的60GHz毫米波信道模型
  • ¥15 不知道是该怎么引用多个函数片段
  • ¥30 关于用python写支付宝扫码付异步通知收不到的问题
  • ¥15 隐藏系统界面pdf的打印、下载按钮
  • ¥15 基于pso参数优化的LightGBM分类模型
  • ¥15 安装Paddleocr时报错无法解决