如何点击div,跳到页面的某一个位置,不想用<a>标签。
3个回答
展开全部
您好,可以给DIV加个JS点击事件,绑定scrollTo()方法来跳到目标点的坐标
更多追问追答
追问
具体的代码怎么写?
追答
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
body{height:3000px;margin:0;}
div{width:100px;height:100px; background:#f00;}
#div2{position:absolute;top:1000px;}
</style>
</head>
<body>
<div id="div1">我是DIV1,点我跳到DIV2</div>
<div id="div2">DIV2</div>
<script>
var oDiv =document.getElementById('div1');
oDiv.onclick=function(){
scrollTo(0,1000);
}
</script>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询