我正在建立一个类似于 facebook 的常见问题解答页面。问题被包裹在一个锚标签中,点击问题,答案就会出现。我有以下两种方法
方法一:
<a href="#"> Question1 </a>
<a href="#"> Question2 </a>
<a href="#"> Question3 </a>
方法二:
<a href="http://example.com/faq"> Question1 </a>
<a href="http://example.com/faq"> Question2 </a>
<a href="http://example.com/faq"> Question3 </a>
锚点标签返回 false onclick。那么方法2有什么seo优势吗?
注意: 我希望所有常见问题解答都在同一页面上。