zoukankan      html  css  js  c++  java
  • jq 监听返回事件

        <script>

     $(document).ready(function(e) {
                var counter = 0;
                if (window.history && window.history.pushState) {
                                 $(window).on('popstate', function () {
                                                window.history.pushState('forward', null, '#');
                                                window.history.forward(1);
                                              alert("不可回退");
                                              //window.location="./c.html";
                                    });
                  }

                  window.history.pushState('forward', null, '#'); //在IE中必须得有这两行
                  window.history.forward(1);
    });
        </script>

  • 相关阅读:
    MSP430:输入捕获
    MSP430:串口输出
    测试输出时钟频率
    C# MySql Select
    C# MySql 连接
    MSP430:PWM产生
    MSP430:定时器学习TimerA
    MSP430:中断简介
    MSP430 PIN 操作寄存器
    剑指offer---包含min函数的栈
  • 原文地址:https://www.cnblogs.com/simadongyang/p/7541702.html
Copyright © 2011-2022 走看看