html-对标题属性加上前缀“ blocked ::”会对链接产生什么影响?

前端之家收集整理的这篇文章主要介绍了html-对标题属性加上前缀“ blocked ::”会对链接产生什么影响? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我注意到有些网站的链接标题以blocked ::开头.

例如:

<a href="http://www.a-url.com" title="blocked::http://www.a-url.com">www.a-url.com</a>

我对这如何影响浏览器和搜索引擎有疑问:

>这是否会对浏览器产生影响?如果是这样,预期的效果是什么?
>这是否会对搜索引擎产生影响?它类似于不追随链接还是对搜索引擎完全没有影响?

最佳答案
我从未见过这种语法,而且我很确定它没有标准化的含义.

但是,有趣的是,Microsoft Outlook用这种方式将链接的href部分标记security feature

When you receive an HTML message,links in it may not work or the File,Open dialog will open,asking to associate an executable file with the link.

Looking at the source,you’ll see the URL is prefixed with BLOCKED::,like this:

<标题= http://office.microsoft.com/ href =“已阻止:: http://office.microsoft.com/”> Office Online< / a>

This is a security feature in Outlook and may happen when URLs are copied from one email message and pasted into another message.

我的猜测是,这些链接实际上是从Microsoft Office文档复制粘贴的链接,而title元素在此过程中会出现乱码.

原文链接:https://www.f2er.com/html/530613.html

猜你在找的HTML相关文章