我的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的总和