Commit fd395ea8 authored by 华国豪's avatar 华国豪 🙄

1

parent cada0c10
...@@ -174,6 +174,20 @@ ...@@ -174,6 +174,20 @@
<script src="../js/md5.js"></script> <script src="../js/md5.js"></script>
<script> <script>
$(function(){
  pushHistory();
    window.addEventListener("popstate", function(e) {
    //根据自己的需求实现自己的功能
window.location.href = 'https://activity.oytour.com/html/GT_activities.html';
  }, false);
  function pushHistory() {
    var state = {
    title: "title",
    url: "#"
  };
    window.history.pushState(state, "title", "#");
  }
});
$(function() { $(function() {
if (sessionStorage.getItem("payInfo")) { if (sessionStorage.getItem("payInfo")) {
let msgList = JSON.parse(sessionStorage.getItem("payInfo")); let msgList = JSON.parse(sessionStorage.getItem("payInfo"));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment