nokogiri:从页面获取快捷方式图标
我怎样才能做到这一点?
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能做到这一点?
How can I do that?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
@smatchkkiss 在大多数情况下都是正确的。总的来说,如果一个网站提供了一个图标,那就是他所说的位置。但是,不需要在那里。可以通过文档本身中的
link
标签指定图标。请参阅维基百科,了解有关标准应如何表述的更多详细信息 完成。@smotchkkiss is correct for most cases. By and large, if a website provides an icon, it's where he said it would be. However, it isn't required to be there. The favicon can be specified via
link
tags in the document itself. See Wikipedia for more details on how the standards say it should be done.要使用 nokogiri,您需要获取以下链接元素:
(此摘自该网站)。
To use nokogiri, you need to grab the following link element:
<link rel="shortcut icon" href="http://sstatic.net/so/favicon.ico">
(this was taken from this site).