对于内容丰富的网页,我最近喜欢使用css:target来显示所需的内容。代码可能如下所示:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Test Page</title>
<style type="text/css">
body {font-family:sans-serif;}
#some-content>*,
#some-content>*:target ~ h2:last-of-type,
#some-content>*:target ~ h2:last-of-type+* { display: none; }
#some-content>h2:target,
#some-content>h2:target+*,
#some-content>h2:last-of-type,
#some-content>h2:last-of-type+* { display: block; }
</style>
</head>
<body>
<h1>Test Page</h1>
<ol>
<li><a href="#test-1">First link</a></li>
<li><a href="#test-2">Second link</a></li>
<li><a href="#test-3">Third link</a></li>
<li><a href="#test-4">Fourth link</a></li>
<li><a href="#test-5">Fifth link</a></li>
</ol>
<div id="some-content">
<h2 id="test-1">First header</h2>
<p>First content</p>
<h2 id="test-2">Second header</h2>
<p>Second content</p>
<h2 id="test-3">Third header</h2>
<p>Third content</p>
<h2 id="test-4">Fourth header</h2>
<p>Fourth content</p>
<h2 id="test-5">Fifth header</h2>
<p>Fifth content</p>
</div>
</body>
</html>
我的问题有两个:
答案 0 :(得分:2)
作为一般规则,蜘蛛不会解析CSS。他们做什么的CSS解析通常与通过display:none
和其他技巧找到可能的隐藏真实内容有关。 但仅仅使用这些CSS规则并不会让网站陷入麻烦,因为这些规则有很多合法用途。只有当它们被用于隐形或其他黑帽搜索引擎优化时,才会受到处罚。
因此,如果您可以在HTML中找到内容,并且它不是由CSS或JavaScript创建的,那么蜘蛛会查找并索引该内容。如果它是由JavaScript或CSS动态创建的,则蜘蛛将无法找到它。 (谷歌的可抓取Ajax确实与谷歌合作,但这是建立网站的一种非常糟糕的方式。)