HTML 锚点中的 nottracked="false" 属性的用途是什么?
What is the purpose of the nottracked="false" attribute in an HTML anchor?
我最近在检查我最近收到的一封电子邮件的 HTML 来源时遇到了这个属性。它似乎是 <a>
元素中使用的属性。令人惊讶的是,Google 搜索没有找到与此属性相关的任何内容。
此属性的简单用法示例如下:
<a href="some url" nottracked="false" style="some css, etc."><img src="some image URL" style="some image css, etc."></a>
有谁知道这个锚点属性的作用and/or为什么要使用它?这在网络上的哪个位置有记录?
Infusionsoft 的电子邮件营销软件使用 nottracked
属性从 Infusionsoft 的 link 跟踪器中选择 HTML 电子邮件中的 links。它是非标准的。具有 nottracked="false"
或缺少 nottracked
属性的元素通常包含一个 Infusionsoft 跟踪 URL 并具有一个 class 名称,该名称以 inf-track-
开头,后跟一个数字 ID。
根据 Infusionsoft's help center, the recommended way to opt links out of the link tracker is to change the class name to inf-track-no
. The nottracked
attribute is not documented publicly anywhere except in this help page for a service called FeedBolt(尽管有名字,但我与它没有任何隶属关系)。这是否意味着 Infusionsoft 已弃用 nottracked
属性(因为它是非标准的)尚不清楚。
我最近在检查我最近收到的一封电子邮件的 HTML 来源时遇到了这个属性。它似乎是 <a>
元素中使用的属性。令人惊讶的是,Google 搜索没有找到与此属性相关的任何内容。
此属性的简单用法示例如下:
<a href="some url" nottracked="false" style="some css, etc."><img src="some image URL" style="some image css, etc."></a>
有谁知道这个锚点属性的作用and/or为什么要使用它?这在网络上的哪个位置有记录?
Infusionsoft 的电子邮件营销软件使用 nottracked
属性从 Infusionsoft 的 link 跟踪器中选择 HTML 电子邮件中的 links。它是非标准的。具有 nottracked="false"
或缺少 nottracked
属性的元素通常包含一个 Infusionsoft 跟踪 URL 并具有一个 class 名称,该名称以 inf-track-
开头,后跟一个数字 ID。
根据 Infusionsoft's help center, the recommended way to opt links out of the link tracker is to change the class name to inf-track-no
. The nottracked
attribute is not documented publicly anywhere except in this help page for a service called FeedBolt(尽管有名字,但我与它没有任何隶属关系)。这是否意味着 Infusionsoft 已弃用 nottracked
属性(因为它是非标准的)尚不清楚。