我正在接管另一位未完全完成的开发人员的项目,我想知道为什么要记录源和介质而不是关键字。媒体和源显示在网址中,并显示为表单中的隐藏字段,但关键字不是。这是我认为我打算做的代码的一部分。
//parse the cookies
var source = _uGC(z, 'utmcsr=', '|');
var medium = _uGC(z, 'utmcmd=', '|');
var term = _uGC(z, 'utmctr=', '|');
// Populate form fields
$( document ).ready(function() {
$("#Field113").attr("value", source);
$("#Field115").attr("value", medium);
// If there's a "SearchKeyword" URL param, use it for the 'term'
var SearchKeyword = (location.search.split('SearchKeyword=')[1]||'').split('&')[0];
if ( (SearchKeyword && !term) || (SearchKeyword && term == "") ) {
$("#Field126").attr("value", term);
}
});