如何使用Javascript或Jquery获取favicon图标/ Apple-touch图标和网页标题?

时间:2014-05-20 18:55:58

标签: javascript jquery html favicon apple-touch-icon

我可以在divIFrame中插入整个网页:

<iframe src="http://www.stackoverflow.com" id="iframe" scrolling="no"></iframe>

但我只需要Iframe的图标和标题。

我不知道如何只获取网站的favicon icon / Apple-touch-icontitle这些项目。

e.g。 www.stackoverflow.com,我只需要titlefavicon icon / Apple-touch-icon。是否有任何插件或任何解析器可以解析网页的HTML并返回这些? 任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

请参阅"How can I get the title of a webpage given the url (an external url) using JQuery/JS"获取标题。类似的技术应该提取图标 - 只需查找<link rel="shortcut-icon">而不是查找<title>

请注意,您可能会遇到跨站点脚本问题。有关iframe方法,请参阅"How can I access iFrame elements with Javascript?""How to expose IFrame's DOM using jQuery?"