您的位置首页生活小窍门

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

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

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

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

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

2.用按钮代码:

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

3.图片代码:

<a rel="nofollow" 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.rel="nofollow" href=’index.php’; window.history.go(-1);

</script>

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

扩展资料:

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

html的实现

<head>

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

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

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

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

</head>

2. javascript的实现

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

// 以下方式直接跳转

window.location.rel="nofollow" href='hello.html';

// 以下方式定时跳转

setTimeout("javascript:location.rel="nofollow" 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.rel="nofollow" href='hello.html';

}

</script>

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