点击链接 同时回到页面顶部
发布网友
发布时间:2022-04-22 09:58
我来回答
共2个回答
热心网友
时间:2022-05-17 12:30
写一个javascript脚本
定义方法
先回到页首锚点
之后打开在内部打开连接
----------------------
补充
javascript 可以实现 搜索下吧 呵呵
----------------------
两个网页 a.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>a.html</title>
<script language="javascript">
function dogo(){
document.b.submit();
}
</script>
</head>
<body>
<a name="head"></a>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<form name="b" action="b.html" target="page" method="post"></form>
<iframe name="page" id="page" height="200" width="600"></iframe>
<a href="#head" onclick="dogo();">返回并提交</a>
</body>
</html>
-----------------------
包含页面 b.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>b.html</title>
</head>
<body>
我是测试包含页面
</body>
</html>
热心网友
时间:2022-05-17 13:48
你只要在页面顶部加一个锚点就可以了
<html>
<head>
<meta http-equiv=content-type content="text/html;charset=GBK">
</head>
<body>
<div style="height:1600px; width:500px"></div>
<a href="#">回到页面顶部</href>
</body>
<script type="text/javascript" language="javascript">
<!--
-->
</script>
</html>