隐藏结账按钮,直到选择发货选项

Hide checkout button until shipping option is chosen?

本文关键字:选择 选项 按钮 隐藏      更新时间:2023-09-26

我使用的是simpleCart js。我想隐藏结账按钮和运费,直到客户选择英国或世界其他地区。这是选择块:

<select id="shippingSelect" onchange="simpleCart.update();">
 <option value="nothing" selected="selected">Choose Shipping Location</option>
 <option value="uk">UK</option>
 <option value="world">Rest of World</option>
</select> 

下面是运费和结账按钮:

<div class="place_order" style="display:none">
 <span id="simpleCart_shipping" class="simpleCart_shipping"></span>
 <a href="javascript:;" class="simpleCart_checkout btnDownload">checkout</a>
</div>

生成购物车的simpleCart脚本:

<script>
simpleCart({
    cartColumns: [
        { attr: "name" , label: "Item" },
        { view: "decrement" , label: false , text: "-" },
        { attr: "quantity", label: "Quantity", view: "input"},
        { view: "increment" , label: false , text: "+" },
        { attr: "price", label: "Price"},
        { attr: "total" , label: "Subtotal", view: "currency"  }
    ],
    cartStyle: "table",
    currency: "GBP",
    language: "english-us",
    checkout: { 
        type: "PayPal" , 
        email: "email@ddress",
        success: "success.html"
    },
    shippingCustom: function(){ 
                 if( $("#shippingSelect").val() == "uk" ){
                      return 0;
                 } else {
                      return 2;
             }
        }
    });

</script>

我想我可以使用$('.place_order').css('display', 'inline');来更改内联样式,但我不知道该怎么做,是将它合并到simpleCart脚本中,还是让它触发一个单独的脚本?也许还有更有效的方法?谢谢

这就是你的意思吗?

$('.simpleCart_checkout btnDownload').hide(); //hide your element upon intial page load
$('#shippingselect').change(function() {
   if ($(this).val() != "nothing") {
      $('.simpleCart_checkout btnDownload').show(); //show element if shipping option selected
   } else {
      $('.simpleCart_checkout btnDownload').hide();
   }
});

AFAIK在类/id名称中使用空格是不好的做法。

在我看来,最好禁用/启用按钮,而不是隐藏或显示它

$('.simpleCart_checkout btnDownload').attr('disabled', true);