HTMLAnchorElement:ping 属性

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

HTMLAnchorElement 接口的 ping 属性是一个由空格分隔的 URL 列表。当链接被点击时,浏览器将向这些 URL 发送带有 PING 正文的 POST 请求。

它反映 <a> 元素的 ping 属性。

备注: 此属性在 Firefox 中无效,并且出于隐私和安全考虑,其使用可能会受到限制。

示例

html
<a
  id="exampleLink"
  href="https://example.com"
  ping="https://example-tracking.com https://example-analytics.com"
  >示例链接</a
>
js
const anchorElement = document.getElementById("exampleLink");
console.log(anchorElement.ping); // 输出:"https://example-tracking.com https://example-analytics.com"

规范

Specification
HTML Standard
# dom-a-ping

浏览器兼容性

BCD tables only load in the browser

参见