我想使用onclick功能将Google Analytics跟踪事件代码添加到提交按钮,但是那里已经有一个onclick功能。
现有代码
<input name="Submit" type="submit" class="button" style="float:left; clear:both;" onclick="MM_validateForm('name','','R','contact_number','','R','email','','RisEmail','address1','','R','address2','','R');return document.MM_returnValue" value="Submit" />
代码我想添加
onclick="_gaq.push(['_trackEvent', 'Contact Page Enquiry', 'Enquiry', 'Contact Page Enquiry']);"
可以这样做吗?
答案 0 :(得分:1)
您需要一个回调函数,它将在单击事件中触发两个脚本。
答案 1 :(得分:1)
我只是猜测,但是......如果你在返回之前粘贴你的代码怎么办?
答案 2 :(得分:1)
如果您使用的是jQuery,它可以正常工作。您可以在一个元素上拥有多个onclick事件。
检查this
代码
document.getElementById("a").onclick = function() {
alert(2); //this over writes the onclick on the element. This is called
};
$("#a").click(function() {
alert(3); //this is called
});
HTML:
<a id="a" onclick="alert(1)">click</a>
从上面的链接中你可以做到这样的事情:
<input name="Submit" type="submit" class="button" style="float:left; clear:both;" onclick="MM_validateForm('name','','R','contact_number','','R','email','','RisEmail','address1','','R','address2','','R'); _gaq.push(['_trackEvent', 'Contact Page Enquiry', 'Enquiry', 'Contact Page Enquiry']); return document.MM_returnValue" value="Submit" />
这是未经测试的方式。
答案 3 :(得分:0)
需要注意两件事:
_trackEvent
调用。您可以通过延迟表单提交来解决第二个问题。
<input id="Submit" name="Submit" type="submit" ... />
...
$('#Submit').click(function(e) {
// Prevent the default handling of the form submit button
e.preventDefault();
MM_validateForm('name', ...
// If the form didn't validate, don't do anything else
if (!document.MM_returnValue) return;
_gaq.push(['_trackEvent', ...
// Get the form & submit it after 150ms delay
var form = $(this).parents('form:first');
setTimeout(function() {form.submit()},150);
});