2007年3月16日星期五

为BLOGGER添加“跳到底部导航”的链接

因为BLOGGER的导航链接放在下边,相当不方便。如果不想做页首导航栏,添加一个“跳到底部”的链接是个不错的解决方法,而且在帖子页也可以方便读者评论。方法很简单:
1.如果想跳到帖子区域的底部,可以在适当位置加入下面代码(如果想跳到导航及发表评论链接,使用该项即可):
<a href='javascript:scroll(0,main.scrollHeight)' title='Scroll to bottom of posts'>跳到导航链接↓</a>
如本BLOG加在日期显示后面:
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/><a href='javascript:scroll(0,main.scrollHeight)' title='Scroll to bottom of posts'> 跳到导航链接↓</a></h2>

2.如果想跳到侧边栏底部,可以在适当位置加入下面代码:
<a href='javascript:scroll(0,sidebar.scrollHeight)' title='Scroll to bottom of sidebar'>跳到侧边栏底部↓</a>
3.如果想跳到整个页面底部,可以在适当位置加入下面代码:
<a href='javascript:scroll(0,document.body.scrollHeight)' title='Scroll to bottom of this page'>跳到页面底部↓</a>

0 评论: