我想添加產品到購物車使用拖動&下降。 爲此,我使用jQuery UI Droppable。代碼是: -使用拖放在magento中添加產品到購物車
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$(".category-products").accordion();
$(".product-name").draggable({
appendTo: "body",
helper: "clone"
});
$(".block-content ol").droppable({
activeClass: "ui-state-default",
hoverClass: "ui-state-hover",
accept: ":not(.ui-sortable-helper)",
drop: function(event, ui) {
$(this).find(".placeholder").remove();
$("<li></li>").text(ui.draggable.text()).appendTo(this);
}
}).sortable({
items: "li:not(.placeholder)",
sort: function() {
// gets added unintentionally by droppable interacting with sortable
// using connectWithSortable fixes this, but doesn't allow you to customize active/hoverClass options
$(this).removeClass("ui-state-default");
}
});
});
使用此代碼產品名稱將成爲可拖放到購物車,但它們不會添加到購物車。我嘗試但不能將產品名稱添加到購物車。請幫幫我。
這些產品是否有任何產品選擇? –
不,他們沒有 –