在我的网站上,我展示了一个内容幻灯片,为此我使用了 jquery。因此,用户将单击一个箭头,然后将显示下一个 div(默认情况下隐藏)。在每个 div 中,(无论是否显示)都有隐藏的 span 标签,其中包含用户正在查看的内容的标题和内容的摘要......
<div id="content" style="display:block">
<h2>Relevance of Oceanography</h2>
<p>Some text</p>
<span class="hiddentitle" style="display:none">Relevance of Oceanography</span>
<span class="hiddencontent" style="display:none">Some content</span>
</div>
<div id="content" style="display:none">
<h2>Seafloor Spreading and Earthquake Activity</h2>
<p>Some text</p>
<span class="hiddentitle" style="display:none">Seafloor Spreading and Earthquake Activity</span>
<span class="hiddencontent" style="display:none">Some content</span>
</div>
我要做的是根据当前显示的 div 的 hiddencontent 替换或更新标签。由于它存储在数据库中,我以为我可以只使用 php,但后来,我意识到这可能意味着我每次都必须重新加载页面,这有点违背了幻灯片的目的......但是,然后,如果我使用 jquery,我担心搜索引擎实际上不会看到元内容,因为它会在页面加载后发生变化......
有没有办法做我在这里想做的事情,或者我只是 SOL?