2013-04-04 82 views
0

當我第一次離開我的選項卡時,我得到一個JS警報框。 但是想將它作爲windows alert - 任何基於我的代碼的想法。 也應該有一個確定和取消按鈕 - 確定>下一步選項卡 取消>同一選項卡具有特定功能的警報框

$(document).ready(function() { 
    B.initB(); 
var 3firstTimeMsg = true; 
var 4FirstTimeMsg = true; 
$(".3a-tab").click(function(){ 
    if(3firstTimeMsg == true) 
     { 
      alert("If you leave this page, any information you've entered will be lost."); 
      3firstTimeMsg = false; 
     } 
    }); 
    $(".3b-tab").click(function(){ 
    if(4FirstTimeMsg == true) 
    { 
     alert("If you leave this page, any information you've entered will be lost."); 
     4FirstTimeMsg = false; 
    } 
    }); 
}); 

回答

0

這可能會是一個確認框:

if(3firstTimeMsg == true) { 
    3firstTimeMsg = confirm("If you leave this page, any information you've entered will be lost."); 
} 

FIDDLE