gpt4 book ai didi

Javascript:链接 href 目标

转载 作者:行者123 更新时间:2023-11-28 20:59:32 29 4
gpt4 key购买 nike

我使用标准 Google Analytics Javascript 代码来跟踪我网站上的出站链接:

  function recordOutboundLink(link, category, action) {
_gat._getTrackerByName()._trackEvent(category, action);
setTimeout('document.location = "' + link.href + '"', 100);
}

即使我将 "target='_blank' 添加到链接中,所有链接仍会在同一窗口/选项卡中打开。我尝试添加 'document.location.target',但脚本尚未运行。

最佳答案

document.location = newURL 将在现有窗口中打开 URL。您可以使用 window.open(newURL) 在新窗口中打开 URL。

其他一些事情:

  1. document.location 已弃用 - 请改用 location.href
  2. 您可以通过不传递操作而是从链接 href 获取来简化代码。

尝试以下操作

<a href='http://example.com' onclick="return recordOutboundLink(this, 'Outbound Link');">

function recordOutboundLink(link, category) {
var url = link.href;
_gat._getTrackerByName()._trackEvent(category, url);
if (link.target == '_blank')
window.open(url);
else
setTimeout(function() {location.href = url;}, 150);
return false;
}

仅供引用:为什么仅使用 setTimeout 在现有窗口中打开 URL?开始在现有窗口中打开新 URL 可能会在分析跟踪像素请求完成之前停止该请求。如果您在新窗口中打开该网址,则无需延迟。

关于Javascript:链接 href 目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11384264/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com