0

我的html代码是

<div id="products">
    <div class="ui-widget-content">
        <ul>
            <li data-id="1" class = "credit"> 10000$ </li>
            <li data-id="2"class = "credit"> 5000$ </li>
            <li data-id="3" class = "credit"> 10000$ </li>
            <li data-id="4" class = "credit"> 5000$ </li>
        </ul>
    </div>
</div>
<table width:100%>
    <tr><td>
 <h3 class="ui-widget-header">Yahoo</h3>
<table border=1 width=100%>
    <tr>
        <td><div id="shoppingCart1" class="shoppingCart">
    <h7 class="ui-widget-header">Number 1</h7>
    <div class="ui-widget-content">
        <ol>
            <li class="placeholder">Add your items here</li>
        </ol>
    </div>
</div>
     </td>

    </tr>
</table>
        </td><td>
 <h3 class="ui-widget-header">Yahoo</h3>
<table border=1 width=100%>
    <tr>
        <td><div id="shoppingCart1" class="shoppingCart">
    <h7 class="ui-widget-header">Number 2</h7>
    <div class="ui-widget-content">
        <ol>
            <li class="placeholder">Add your items here</li>
        </ol>
    </div>
</div>
     </td>
    </tr>
</table>
        </td></tr></table>

我的js代码是

$("#products li").draggable({
    appendTo: "body",
    helper: "clone"
});
$("#shoppingCart1 ol").droppable({
    activeClass: "ui-state-default",
    hoverClass: "ui-state-hover",
    accept:".credit",
    drop: function(event, ui) {
        var self = $(this);
        self.find(".placeholder").remove();
        var productid = ui.draggable.attr("data-id");
        if (self.find("[data-id=" + productid + "]").length) return;
        $("<li></li>", {
            "text": ui.draggable.text(),
            "data-id": productid
        }).appendTo(this);
        // To remove item from other shopping chart do this
        var cartid = self.closest('.shoppingCart').attr('id');
        $(".shoppingCart:not(#"+cartid+") [data-id="+productid+"]").remove();
    }
}).sortable({
    items: "li:not(.placeholder)",
    sort: function() {
        $(this).removeClass("ui-state-default");
    }
});
$("#shoppingCart2 ol").droppable({
    activeClass: "ui-state-default",
    hoverClass: "ui-state-hover",
    accept:".debit",
    drop: function(event, ui) {
        var self = $(this);
        self.find(".placeholder").remove();
        var productid = ui.draggable.attr("data-id");
        if (self.find("[data-id=" + productid + "]").length) return;
        $("<li></li>", {
            "text": ui.draggable.text(),
            "data-id": productid
        }).appendTo(this);
        // To remove item from other shopping chart do this
        var cartid = self.closest('.shoppingCart').attr('id');
        $(".shoppingCart:not(#"+cartid+") [data-id="+productid+"]").remove();
    }
}).sortable({
    items: "li:not(.placeholder)",
    sort: function() {
        $(this).removeClass("ui-state-default");
    }
});

现在你也可以在这里看到演示 - http://jsfiddle.net/Sanjayrathod/5DMru/

我想要的是,如果我将一个项目拖放到数字 1 框中,然后我将一个项目拖放到数字 2 框中,现在在将项目放入相应的数字框中后,我想获得总/总和值并比较各个框的总和值,即比较Number Box 1的总和与Number Box 2的总和

4

1 回答 1

1

您只需要li在两个框中遍历每个并总结它们的值:

var amount1 = 0;
$("#shoppingCart1 ol").find('li').each(function () {
    amount1 += parseInt($(this).text());
});
var amount2 = 0;
$("#shoppingCart2 ol").find('li').each(function () {
    amount2 += parseInt($(this).text());
});
if(amount1 > amount2) { // the value in the first box is greater than in the second
    //TODO notify user
} else if (amount1 < amount2) { // the value in the first box is less than in the second
    //TODO notify user
} else { // // the value in the first box is equal to the second
    //TODO notify user
}

添加值后,在每个可放置句柄中执行此操作。我更新了你的小提琴:见这里

顺便说一句,您的代码中有一个错字:两个框都有 idshoppingCart1而不是第二个框有 id shoppingCart2

于 2013-09-16T11:25:14.887 回答