2014-10-20 56 views
0

我正在嘗試修復我的網站存在的問題。我正在使用商店的插件,並且結帳時確認按鈕無法使用。我試過在我自己的jQuery腳本中添加隱藏和顯示應該發生的事情,但按鈕仍然沒有任何作用。WP插件確認按鈕不起作用

$("#checkout-next").click(function() 
     { 
      if ($("#shopping-cart-form").css("display") = 'none') 
      { 
       $("#shopping-cart-form").css({ display: "block", float: ""}); 
       $("#shopping-cart").css({ display: "none", float: "left"}); 
      } 
     }); 
+0

如何jQuery的進口? – rnevius 2014-10-20 12:21:19

回答

0

我想,你有一個丟失等號在您的條件:

$("#shopping-cart-form").css("display") == 'none' 
             ^

,你有你頁面還上2個錯誤:

TypeError: $ is not a function 
$("#checkout-next").click(function() 
TypeError: active_items is undefined 
var is_active = active_items.hasOwnProperty($checkout_item) && active_items[$c...