http-equiv="refresh"
content="3url=3页面">,这样就可以达到你的目的了。content后面的数字3表示时间,单位是秒。所以,这就表示3秒钟之后就会自动跳转到3页面。
修改表单的action属性就可以了:<form action="你要跳转的地址" ....
这个只对Submit类型的按钮有效,如果你是button的,那么就像楼上那样跳转,不过这种跳转不会将表单的数据传过去
function countDown(secs,surl,divid){
var tiao= document.getElementById("divid")
tiao.innerHTML="本页面会在 <font color=red><b>"+secs+"</b></font> 秒后自动跳转到支付页面...如未跳转请点击下面链接继续进行支付"
if(--secs>0){
setTimeout("countDown("+secs+",'"+surl+"')",1000)
}
else{
location.href=url1
}
}
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)