运费估算代码

时间:2015-01-12 17:10:15

标签: javascript

我们的网站希望在我们的产品skus上实施“估计运费”功能。鉴于我们的后端提供商(Volusion)不提供此功能,最佳方法是什么?我在亚马逊上发布了一个产品链接,显示了我们想要的产品(注意定价领域的“+ 54.99运费”):

http://www.amazon.com/Count-Simpson-Strong-Tie-ABU88-Standoff/dp/B00K23390I/ref=sr_1_8?ie=UTF8&qid=1421081979&sr=8-8&keywords=abu88

他们似乎正在使用的javascript在这里:

< script type = "text/javascript" >
  P.when("jQuery").execute(function($) {
    var form = $("#addToCart"),
      thirdParty = $("#soldByThirdParty"),
      args = {
        a: form.find("[name=ASIN]").val(),
        me: form.find("[name=merchantID]")
          .val()
      };

    $('#selectQuantity [name="quantity"]').change(
      function() {
        args.qt = this.value;
        $.get("/gp/product/du/quantity-sip-update.html",
          args,
          function(data) {
            data = $(data);
            thirdParty.find(".price3P").html(data.filter(".price").text());
            thirdParty.find(".shipping3P").html(data.filter(".plusShippingText").text());


          }
        );
      }
    );
  }); < /script>

0 个答案:

没有答案