可能重复:
What does <link> tag do besides including stylesheets?
<link rel="stylesheet" type="text/css" href="example.css" />
使用链接标记我们可以定义关系类型和mime类型,但我从未见过它。 真实用于其他rel attributes的一些示例是什么?存在哪些支持问题?
我不确定我们能够做什么,不能用这个标签,浏览器如何处理它等等......
从我自己的游戏中看,我看起来无法通过JavaScript读取任何被调用的数据,但浏览器仍会处理内容。
答案 0 :(得分:5)
RSS:
<link rel="alternate" type="application/rss+xml" title="RSS FEED" href="/RSS" />
FAVICON:
<link rel="shortcut icon" href="/favicon.ico">
iPHONE / iPAD ICON:
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
SEARCH:
<link rel="search" type="application/opensearchdescription+xml" title="" href="/search.xml">
我确信这有很多专有用途。