0

当我第一次离开标签时,我收到了一个 JS 警报框。但想将它作为 Windows 警报 - 基于我的代码的任何想法。也应该有一个确定和取消按钮 - 确定 > 下一个选项卡取消 > 相同的选项卡

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

1 回答 1

0

那可能是一个确认框:

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

小提琴

于 2013-04-04T16:40:43.287 回答