返回到上一页的html代码的几种写法

返回到上一页的html代码的几种写法,第1张

返回到上一页的html代码的几种写法

1.超链接返回上一页代码:

<a href=”#” onClick=”javascript :history.back(-1)”>返回上一页</a>

<a href=”#” onClick=”javascript :history.go(-1)”>返回上一页</a>

2.用按钮代码:

<input type=”button” name=”Submit” onclick=”javascript:history.back(-1)” value=”返回上一页”>

3.图片代码:

<a href=”javascript :” onClick=”javascript :history.back(-1)”><img src=”图片路径” border=”0″ title=”返回上一页”></a>

[color=#FF0000]几秒钟后[/color]自动返回上一页代码:(加入两个head间,3000表示3秒)

<SCRIPT language=javascript>

function go()

{

window.history.go(-1)

}

setTimeout(“go()”,3000)

</SCRIPT>

“>返回上一页</a>

<script>alert(‘发布失败’)location.href=’index.php’window.history.go(-1)

</script>

扩展资料:

跳转页面的html代码的几种写法

html的实现

<head>

<!-- 以下方式只是刷新不跳转到其他页面 -->

<meta http-equiv="refresh" content="10">

<!-- 以下方式定时转到其他页面 -->

<meta http-equiv="refresh" content="5url=hello.html">

</head>

2. javascript的实现

<script language="javascript" type="text/javascript">

// 以下方式直接跳转

window.location.href='hello.html'

// 以下方式定时跳转

setTimeout("javascript:location.href='hello.html'", 5000)

</script>

3.结合了倒数的javascript实现(IE)

<span id="totalSecond">5</span>

<script language="javascript" type="text/javascript">

var second = totalSecond.innerText

setInterval("redirect()", 1000)

function redirect(){

totalSecond.innerText=--second

if(second<0) location.href='hello.html'

}

</script>

参考资料:百度百科-html代码

晕~~你问的也太笼统了吧~~简单地说要返回首页的话,只需要在你现在的页面上做一个链接就可以了,具体来说:\x0d\x0a返回首页\x0d\x0a//其中“首页地址”可以是相对路径也可以是绝对路径,推荐相对路径。\x0d\x0a返回上一步?应该是返回上一次 *** 作的页面吧~~\x0d\x0a返回上一页\x0d\x0a。。打这么字可累啊~~~

可以通过html的锚标签来实现

<html>

<head></head>

<body>

<a id="top"></a>

.........................

<!--在返回顶部按钮处写-->

<a href="#top">返回顶部</a>

</body>

</html>

js的写法

页面上的返回顶部按钮

<button type="button" onclick="GoTop()"></button>

js中的写法

function GoTop(){

if (document.body &&document.body.scrollTop &&document.body.scrollLeft)

{

document.body.scrollTop=0

}

if (document.documentElement &&document.documentElement.scrollTop &&document.documentElement.scrollLeft)

{

document.documentElement.scrollTop=0

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6295235.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-20
下一篇 2023-03-20

发表评论

登录后才能评论

评论列表(0条)

保存