0

ページが初めてロードされたときに警告メッセージを表示するjqueryがありますが、ページが初めて閉じられたときに警告メッセージを表示するjqueryが必要です。ロード?

<script type="text/javascript">

// First Time Visit Processing
// copyright 10th January 2006, Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the below code in this script (including this
// comment) is used without any alteration
function rC(nam)
 {
    var tC = document.cookie.split('; ');
     for (var i = tC.length - 1; i >= 0; i--)
      {
        var x = tC[i].split('=');
         if (nam == x[0])
          return unescape(x[1]);
       }
        return '~';
} 
function wC(nam,val)
{
    document.cookie = nam + '=' + escape(val);
} 
function lC(nam,pg) 
{
    var val = rC(nam);
    if (val.indexOf('~'+pg+'~') != -1)
        return false;
    val += pg + '~'; 
    wC(nam,val);
    return true;
} 
function firstTime(cN) 
{
    return lC('pWrD4jBo',cN);
} 
function thisPage() 
{
    var page = location.href.substring(location.href.lastIndexOf('\/')+1);
    pos = page.indexOf('.');
    if (pos > -1) 
    {
        page = page.substr(0,pos);
    } 
return page;
}

// example code to call it - you may modify this as required
function start() {
   if (firstTime(thisPage())) {
      // this code only runs for first visit
      alert('welcome');
   }
   // other code to run every time once page is loaded goes here
}
onload = start;

    </script>
4

1 に答える 1

4

それは本当に物事を複雑にしすぎていますか?

ページが初めてロードされたときにメッセージを警告するには、次のようにします。

if ( ! localStorage.getItem(window.location) ) {
    localStorage.setItem(window.location, true);
    alert('Welcome');
}

で実際に何も警告することはできませんがbeforeunload、確認ダイアログをポップアップできます:

window.onbeforeunload = function(e) {
    if ( ! localStorage.getItem('unload_' + window.location) ) {
        localStorage.setItem('unload_' + window.location, true);
        return 'Dialog text here.';
    }
}    

古いブラウザのサポートは、 MDNの localStorage shim で追加できます。

于 2013-08-01T11:32:51.617 に答える