当我第一次离开标签时,我收到了一个 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;
}
});
});