我有一个 html 页面,其中我有许多锚标记我想在锚标记中添加 rel="no follow" 属性,如果它在源以超文本传输协议请求开头的页面上没有它。一些锚点已经有了 rel 属性。我怎样才能通过
例子:-
<html>
<body>
<p> Here we go</p>
<a href="https://www.abc.com"> a1</a>
<a href="https://www.abc.com" rel="nofollow" > a2</a>
<a href="https://www.abc.com">a3</a>
</body>
</html>
我想在页面加载时间在 a1 和 a2 上添加 rel= no follow 属性我该如何实现