• 学习document.location.href和document.location.replace 区别


    document.location.href和document.location.replace都可以实现从A页面切换到B页面,但他们的区别是:
    用document.location.href切换后,可以退回到原页面。
    而用document.location.replace切换后,不可以通过“后退”退回到原页面。
    关于document.location.href或其他可回退的切换方式,我还发现一个细节,
    用个例子来说明:
    假设有A.htm B.htm C.htm三个页面
    A.htm里有这样一句:document.location.href="b.htm";
    b.htm里有这样一句:document.location.href="c.htm";
    注意两个都是可回退的切换。

    1:当从A切换到B再切换到C时,实际内存中保留了三个页面:A、B、C
    2:回退到B时,C页面被清出内存!
    3:再次回退,到A页面时,B页面也被清出内存!
    4:再次向前(不是用切换而是用向前)转到B页面时,
  • 相关阅读:
    极验验证(滑动验证)的使用
    from close /destory
    tmeminifile and tinifile
    Delphi的OverRide、OverLoad和Virtual方法
    XE6 FMX之控件绘制与显示
    Delphi Android程序启动过程
    Delphi中的容器类
    接口
    集合
    class methed
  • 原文地址:https://www.cnblogs.com/yaowen/p/2920569.html
Copyright © 2020-2023  润新知