0
我正在查看頁面上的Google分析的js。它包含以下內容(更改域名,名稱等)。這是在主頁上。我知道這些用於設置廣告系列變量,但是...爲什麼有人會在主頁上執行此操作?也許是因爲他們有多個網站,並且將每個網站的點擊次數作爲廣告系列進行跟蹤?這是一個好的配置嗎?Google Analytics(分析)中的_setCampNameKey用法
_gaq.push(['_setDomainName', 'somesite.co.uk']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setCampNameKey', 'John Doe']);
_gaq.push(['_setCampSourceKey', 'any']);
_gaq.push(['_setCampMediumKey', 'any']);
_gaq.push(['_setCampTermKey', 'plumbs']);
_gaq.push(['_setCampContentKey', 'all']);
_gaq.push(['_trackPageview']);
的例子啊,謝謝!因此,從文檔如果傳入的鏈接有一個參數描述='xxx',那麼setCampContentKey將說明將描述字段中的任何內容映射到標準utm_content字段......但是這對上述示例有意義嗎?不會_gaq.push(['_ setCampContentKey','all']);指示應該映射到utm_content的參數all ='something'? – dajl