首页 > 解决方案 > Detect URL change in querystring

问题描述

I am adding some script on a Shopify product page where I need to detect the URL change which happens on selection of a product option (handled by Shopify) for further use.

The URL change occurs when variants are selected with the query parameter (question mark) like this:

Variant 1 - my.shopify.domain/products/product1?variant=1234
Variant 2 - my.shopify.domain/products/product1?variant=5678

I have tried adding the 'hashchange' event but then realized it only works for '#' which is not the case here.

What should I do?

标签: javascriptjqueryshopify

解决方案


请将此脚本粘贴到您的 product.liquid 文件中

<script>
  var firstTimeUrl = document.URL;
  document.addEventListener('change', function() {
  var currentPageUrl = document.URL;
  var url = new URL(currentPageUrl);
  var isVariantUrl = url.searchParams.get("variant");
  currentPageUrl = isVariantUrl ? currentPageUrl :isVariantUrl;
    if(currentPageUrl && firstTimeUrl != currentPageUrl) {
      firstTimeUrl = currentPageUrl;
      console.log('variant_id: '+isVariantUrl+'')
    }
  });
</script>

推荐阅读