具有特定功能的警报框

时间:2013-04-04 16:38:55

标签: javascript jquery

当我第一次离开我的标签时,我正在获得一个JS警报框。 但是想把它作为Windows警报 - 任何基于我的代码的想法。 还应该有一个OK和取消按钮 - Ok>下一个标签                                                取消>相同的标签

$(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;
    }
    });
});

1 个答案:

答案 0 :(得分:0)

这可能是一个确认框:

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

FIDDLE