我有 2 个文件
main.js 中的一些代码
...
var google_push = function (page, alias) {
_gaq.push(['_trackEvent', page, 'click', alias, 1]);
}
...
$(document).ready(function(){
...
$('#some_id').click(function(e){
google_push('value1', 'value2');
});
...
索引.html
<header>
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XX-XXXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Google Analytics -->
<script type="text/javascript" src="/static/js/main.js"></script>
</header>
<body>
...
<a id="some_id" href="#"</a>
</body>
因此,当我单击 some_id 链接时 - 没有任何东西推送到 Google Analytics。但是如果我将代码重写为
<a id="some_id" href="#" onclick = "_gaq.push(['_trackEvent', 'value1', 'click', 'value2', 1]);"</a>
它开始工作。第一种情况会出现什么问题?