Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Chromeコンソールを使用すると機能しますか
_gaq.push(['_trackEvent'...
ga スクリプトが既に読み込まれている場合でも、これは機能しますか?
はい。
Google アナリティクス スクリプトは、_gaq配列を独自のオブジェクトに置き換えます。その新しいpush()関数はリクエストをすぐに送信します。
_gaq
push()
_gaq.push()これにより、非同期スクリプトのロードの前後で同じ呼び出しを使用できます。
_gaq.push()