1

ここで、このスクリプトに名前と値を渡す必要があるのか​​、それとも、Google アナリティクス サーバーに保存される任意の名前と値を与えることができるのか疑問に思っています。

_gaq.push(['_setCustomVar',
          1,                   // This custom var is set to slot #1.  Required parameter.
          'Items Removed',     // The name acts as a kind of category for the user activity.  Required parameter.
          'Yes',               // This value of the custom variable.  Required parameter.
          2                    // Sets the scope to session-level.  Optional parameter.
       ]);
     _gaq.push(['_trackEvent',
          'Shopping', // category of activity
          'Item Removal', // Action
       ]);
4

1 に答える 1

0

カスタム変数の名前と値はかなり自由形式ですが、英数字を使用することをお勧めします。私はメタ文字を試したことがありません。

于 2012-11-08T02:43:32.310 に答える