美文网首页
返回上一页

返回上一页

作者: 回忆不死我们不散 | 来源:发表于2020-04-30 09:22 被阅读0次
    go(-1): 原页面表单中的内容会丢失;
    history.go(-1):后退+刷新;
    history.go(1) :前进
    back(): 原页表表单中的内容会保留;
    history.back():后退 ;
    history.back(0) 刷新;
    history.back(1):前进
    
    window.history.go(-1); //返回上一页
    
    window.history.back(); //返回上一页
    
    window.location.go(-1); //刷新上一页
    
    window.history.back();location.reload();//强行刷新(返回上一页刷新页面)
    
     
    
    //如果要强行刷新的话就是:window.history.back();//刷新当前页 window.location.reload();
    
    Javascript 返回上一页:
    
    1. history.go(-1), 返回两个页面: history.go(-2);
    
    2. history.back(). 
    
    3. window.history.forward()返回下一页
    
    4. window.history.go(返回第几页,也可以使用访问过的URL)  
    
     例:
    
    <a href="javascript:history.go(-1);">向上一页</a> 
    
    response.Write("<script language=javascript>")
    
    response.Write("if(!confirm('完成任务?')){history.back();}")
    
    response.Write("</script>")
    
    response.Write("<script language=javascript>history.go(-1);</script>")
    
    <a href="javascript:history.go(-1);">向上一页</a>
    
    页面跳转:οnclick="window.location.href='index.aspx'"
    
    P.S.
    
    小技巧(JS引用JS):
    
    <script type=text/javascript>
    
    <!--
    
    if (typeof SWFObject == "undefined") {
    
    document.write('<scr' + 'ipt type="text/javascript" src="/scripts/swfobject-1.5.js"></scr' + 'ipt>');}
    
    //-->
    
    </script>
    

    相关文章

      网友评论

          本文标题:返回上一页

          本文链接:https://www.haomeiwen.com/subject/xpwawhtx.html