我尝试使用此代码在用户点击链接时发出提醒。但是,此功能仅适用于Chrome和Internet Explorer,但在Firefox中不起作用。
请参阅以下代码:
jQuery(function($) {
$(document).ready(function() {
$(".disableGA").on("click", function() {
event.preventDefault();
alert("Google Analytics was disabled");
window.location.href = 'javascript:gaOptout()';
});
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a class="disableGA">Disable Google Analytics</a>
答案 0 :(得分:4)
请将event
传递给该功能,然后重试
<script>
jQuery(function ($) {
$( document ).ready(function() {
$(".disableGA").on("click", function(event){
event.preventDefault();
alert("Google Analytics was disabled");
window.location.href='javascript:gaOptout()';
});
});
});
</script>