gpt4 book ai didi

javascript自毁网页

转载 作者:行者123 更新时间:2023-11-30 08:43:54 25 4
gpt4 key购买 nike

<分区>

我有一个带有倒计时和重定向到上一页的网页,效果很好,但我不想重定向到上一页,而是希望页面(当前浏览器选项卡)关闭。消失。 self 毁灭。我尝试用 window.close() 替换我的重定向 history.go(-1) 但它没有用。

JS:

var countdownfrom=9    
var currentsecond=document.redirect.redirect2.value=countdownfrom+1

function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
history.go(-1)
return
}
setTimeout("countredirect()",1000)
}
countredirect()

HTML:

<form name="redirect">
<h1>Oops! &nbsp;I think you meant to use a URL...</h1>
<h2>this page will self destruct in</h2>
<form>
<input type="text" size="1" name="redirect2">
</form>
<h2>seconds</h2>
<h3>Go back to where you came from and try again!</h3>

html 看起来不对,您甚至可以将一个表单嵌套在另一个表单中吗?不过效果很好。

更正的 HTML:

    <h1>Oops! &nbsp;I think you meant to use a URL...</h1>
<h2>this page will self destruct in</h2>
<form name="redirect">
<input type="text" size="1" name="redirect2">
</form>
<h2>seconds</h2>
<h3>Go back to where you came from and try again!</h3>

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com