html 在字段中使用URL UTM参数 - 无需动态文本替换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在字段中使用URL UTM参数 - 无需动态文本替换相关的知识,希望对你有一定的参考价值。

<script>
ijQuery(document).ready(function(){  
// function that gets the url parameters  
  var getUrlParameter = function getUrlParameter(sParam) {
    var sPageURL = decodeURIComponent(window.location.search.substring(1)),
        sURLVariables = sPageURL.split('&'),
        sParameterName,
        i;

    for (i = 0; i < sURLVariables.length; i++) {
        sParameterName = sURLVariables[i].split('=');

        if (sParameterName[0] === sParam) {
            return sParameterName[1] === undefined ? true : sParameterName[1];
        }
    }
	};
  
  
   var utmSourcesFieldName = 'utm_source'; // the name of the field is the same as the url parameter
   ijQuery("input[name='" + base64_encode(utmSourcesFieldName) + "']").attr('value', getUrlParameter(utmSourcesFieldName));
});
</script>

以上是关于html 在字段中使用URL UTM参数 - 无需动态文本替换的主要内容,如果未能解决你的问题,请参考以下文章

使用 utm 参数

转发 URL 参数的链接

Power Apps 中 URL 中的查询字符串

在 Redshift 中使用活动跟踪参数捕获 URL 时遇到问题

使用 curl 下载多个 URL 而无需重复参数

打开灯箱后,从data-textval向URL添加参数