如何判断该网站是否使用微格式?
朋友们,
我必须找到给定的(任何)网站是否使用微格式,该怎么做?我已经了解了如何使用微格式,但仍然不知道哪些是那些特殊的标签,仅用于制作 microforts.我应该搜索 hcard 或 vcard 吗?或者我没有得到的跨类,请帮助我。 谷歌是否提供任何API,我也搜索了谷歌网站管理员。我使用的是c#,asp.net。
friends
I have to find that a given(any) website is using microformats or not,how to do that?I'd seen how to use micro format but still not getting which are those exceptional tag,used only to make
microforts.should I search for hcard or vcard??or span classes I am not getting pls help me.
does google provide any api for that, I searched google webmaster as well.I am using c#,asp.net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
microformats.org 拥有您正在搜索的有关类名等的所有信息。您可以使用此小书签在页面上提取 vcard:
但是,这只会显示 vcard,因此如果您正在测试页面并且它没有 vcard ,这并不意味着它在其他地方的页面上没有其他微格式。
microformats.org has all the information you are searching for regarding class names, etc. You can use this bookmarklet to extract vcards on a page:
However that's only going to show vcards, so if you're testing a page and it has no vcard, that doesn't mean that it does not have other microformats on the page elsewhere.
如果您想以编程方式执行此操作,您可以编写代码来解析/grep 页面内容,以查找具有您正在查找的微格式的类特征的 DIV 和 SPAN 元素序列。
为了手动(作为人类)执行此操作,我使用的 QA 流程是:
安装 http://microformats.org/wiki/Main_Page 中详细介绍的浏览器插件之一,然后浏览到您想要验证的页面...浏览器将检测页面上存在的任何微格式并显示信息。
If you want to do so programmatically, you can write code to parse/grep page content for a sequence of DIV and SPAN elements with the classes characteristic of the microformat you are looking for.
To do so manually (as a human), the QA process I use is:
Install one of the browser plugins detailed at http://microformats.org/wiki/Main_Page and browse to the page you want to verify... the browser will detect any present microformats on the page and display the information.