0

我什至不知道如何正确地用词标题。我正在寻找一种在加载页面时将页面设置为已访问,然后运行命令的方法。下次我加载网页时,它将被标记为已访问,因此它将执行另一段代码。

例子:

    (function(){
//Detect if page is visited, and direct it to the correct part of the code

//This is the set of code to run if the page has not been visited, Set page as visited here
   $( "#button" ).click(); 

//Run this if the page has been marked as visited
   setTimeout(function(){
  window.close();
}, 50);

})();

对于 Jquery 等来说还是相当新的,请原谅我的无知。

4

1 回答 1

0

跨网站的多个视图存储信息的常用方法是使用 cookie。您可以有一个 cookie 来跟踪该页面是否已被访问。Cookie 是用户计算机的本地文件,因此效果应该是您想要的。

这是一个不错的小 cookie 实用程序:

https://github.com/carhartl/jquery-cookie

您可以使用它来跟踪该站点是否已被访问,然后您的代码可以检查其值并根据其值执行不同的代码。

于 2014-07-21T19:54:02.817 回答