js,html-点击直接跳转到页面底/顶部
案例一:js控制,无滑动效果
<html> <body> <a href="javascript:void(0);" onclick="javascript:document.getElementsByTagName('BODY')[0].scrollTop=document.getElementsByTagName('BODY')[0].scrollHeight;"搜索>到页底</a> <div style="height:3000px;"></div> <a href="javascript:void(0);" onclick="javascript:document.getElementsByTagName('BODY')[0].scrollTop=0;">回页顶</a> </body> </html>
案例二:html描点控制。无滑动效果
<body> <a href="#DD" >bottom</a>//跳到id为DD的锚点 // 内容 <a id='DD' ></a>//空的锚点 </body>
知识只有共享才能传播,才能推崇出新的知识,才能学到更多,这里写的每一篇文字/博客,基本都是从网上查询了一下资料然后记录下来,也有些是原滋原味搬了过来,也有时加了一些自己的想法