1

嘿,我尝试制作一个自定义脚本来显示购物车。而且我认为我最近完成但我有一个问题,它只能调用一次该函数。

http://articles-authors.com/order-form/上,您可以在右上角看到购物车,并且当网站加载时,已经加载了一个功能来创建购物车。但是,当尝试将鼠标悬停在购物车上时,什么都没有发生,它应该调用另一个函数来重新创建购物车并将类设置为 html 元素#cart 的活动类。

这是代码:

首先调用购物车创建函数的函数

makeCartWithoutActive();
$("#cart").mouseenter(function(){
makeCartWithActive();
}).mouseleave(function(){
makeCartWithoutActive();

});

原因是使用 mouseenter 是因为我使用 jquery 2.0.3 并且我认为 live 已在 1.7 中删除。

在这里您可以看到应该重新创建购物车的函数,然后将活动类设置为#cart,以便显示购物车

function makeCartWithActive(){
$.get("http://articles-authors.com/order-form/cart/get",function(data) {
  var html = "";
    if(data.msg === false){
      html = '<div id="cart" class="right active">'+
            '<div class="heading"><a><span id="cart-total">0 item(s) - $0.00</span></a></div>'+
            '<div class="content"><div class="empty">'+data.respone+'</div></div></div>';
     $("#cart").replaceWith(html);

     }else{

     html = '<div id="cart" class="right active"><div class="heading"><a><span id="cart-total">'+data.totalitem+' item(s) - $'+data.totalprice+'</span></a></div>'+
            '<div class="content"><div class="mini-cart-info"><table><tbody>';

    $.each(data.data, function(i, currProgram) {
         $.each(currProgram, function(key,val) {
            html += '<tr><td class="name">'+val.name+'</td><td class="quantity">x '+val.quantity+
                    '</td><td class="total">$'+val.price+'</td><td class="remove"><img src="http://articles-authors.com/order-form/img/remove-small.png'+
                    '" onclick="RemoveItem('+val.rowid+');" width="12" height="12" title="Remove" alt="Remove"></td></tr>';
        });
    });

      html += '</tbody></table></div>'+
            '<div class="mini-cart-total"><table><tbody><tr><td align="right"><b>Sub-Total:</b></td><td align="right">'+data.totalprice+'</td></tr><tr><td align="right"><b>Total:</b></td><td align="right">'+data.totalprice+'</td></tr></tbody></table></div>'+
            '<div class="checkout"><a class="button" href="http://articles-authors.com/order-form/cart">Checkout</a></div></div></div>';


     $("#cart").replaceWith(html);
 }},

"jsonp");

}

希望可以有人帮帮我。我还是 jQuery/JavaScript 的新手,所以不知道为什么会这样

提前致谢

4

2 回答 2

2

使用委托事件处理程序

$(document).on('mouseenter', '#cart', function(){
    makeCartWithActive();
});

$(document).on('mouseleave', '#cart', function(){
    makeCartWithoutActive();
});

或者你可以使用

$(document).on({
    "mouseenter" : function(e) { makeCartWithActive(); },
    "mouseleave" : function(e) { makeCartWithoutActive(); }
}, "#cart");
于 2013-07-21T13:25:58.363 回答
0
$(document).on('mouseenter', '#cart', function(){
    makeCartWithActive
}).on('mouseleave', '#cart', function(){
    makeCartWithoutActive
});

您正在替换元素,因此处理程序消失了。您需要将该函数委托给最近的静态父元素。

我选择文档,但为了性能,您应该选择更接近#cart

于 2013-07-21T13:25:47.040 回答