停止所有代码并继续,就像JS中的alert()一样

时间:2015-04-28 00:26:51

标签: javascript alert

让我解释一下:当您在JS中调用alert()时,警报下方的所有代码都将停止,当您单击Ok时,代码将返回工作。

我使用以下代码制作自己的自定义提醒:

function cAlert()
{
var bOn;
this.show = function (content)
{       
    bOn = true;
    document.write('<div id="turnOffLight"></div><div id="cAlertBox"><div id="cAlertImageBox"><img style="position: absolute; top: 54%; left: 50%; margin-top: -32px; margin-left: -32px;" src="Images/Vectors/1429744831_678136-shield-warning-64.png" alt=""/> </div><div id="cAlertContentBox"> </div><div id="cAlertButtonBox"><input id="cAlertButtonStyle" type="button" value="OK" onclick="cAlert.ok()" /></div></div>');
    $("#cAlertContentBox").html(content);
    $("#cAlertBox").show();
    $("#turnOffLight").fadeIn("fast");

    var div = document.getElementById('cAlertBox').offsetWidth;
    var res = -Math.abs(div / 2);
    document.getElementById('cAlertBox').style.marginTop = res + "px";
};
this.ok = function ()
{
    $("#cAlertBox").hide();
    $("#turnOffLight").fadeOut("medium");
    bOn = false;
};
}

以及其他页面:

<head>
    <script src="Scripts/jQuery_1.11.2.js" type="text/javascript"></script>
    <script src="Scripts/cAlertScript.js" type="text/javascript"></script>
    <script type="text/javascript">var cAlert = new cAlert();</script>
</head>

但我有一个问题,在登录页面中,在调用cAlert()后,我称之为:

echo "<script>javascript:history.go(-1)</script>";

返回到最后一页,当我以前使用alert()时,只有在用户点击确定后,浏览器才会返回到最后一页,但是使用cAlert,浏览器已经返回到最后一页。

我想要的是用户需要单击“确定”按钮将代码继续作为警报()。

2 个答案:

答案 0 :(得分:2)

cAlert.show(content)更改为cAlert.show(content, success)。 将cAlert.ok()更改为cAlert.ok(' + success + ')。 将this.ok = function ()更改为this.ok = function (success),最后将success();添加到ok()函数的末尾。

单击cAlert中的按钮时,将调用success

您现在需要拨打cAlert.show("text")

,而不是致电cAlert.show("text", function() { javascript:history.go(-1); } )

所以你的代码现在应该是:

function cAlert()
{
var bOn;
this.show = function (content, success)
{       
    bOn = true;
    document.write('<div id="turnOffLight"></div><div id="cAlertBox"><div id="cAlertImageBox"><img style="position: absolute; top: 54%; left: 50%; margin-top: -32px; margin-left: -32px;" src="Images/Vectors/1429744831_678136-shield-warning-64.png" alt=""/> </div><div id="cAlertContentBox"> </div><div id="cAlertButtonBox"><input id="cAlertButtonStyle" type="button" value="OK" onclick="cAlert.ok(' + success + ')" /></div></div>');
    $("#cAlertContentBox").html(content);
    $("#cAlertBox").show();
    $("#turnOffLight").fadeIn("fast");

    var div = document.getElementById('cAlertBox').offsetWidth;
    var res = -Math.abs(div / 2);
    document.getElementById('cAlertBox').style.marginTop = res + "px";
};
this.ok = function (success)
{
    $("#cAlertBox").hide();
    $("#turnOffLight").fadeOut("medium");
    bOn = false;

    success();
};
}

<head>
    <script src="Scripts/jQuery_1.11.2.js" type="text/javascript"></script>
    <script src="Scripts/cAlertScript.js" type="text/javascript"></script>
    <script type="text/javascript">
        var cAlert = new cAlert();
        cAlert.show("text", function() { javascript:history.go(-1); } );
    </script>
</head>

答案 1 :(得分:0)

由于您只想在单击确定按钮后返回页面,请放置函数调用或代码以返回cAlert.ok()功能。这样,只有在用户单击“确定”按钮后页面才会返回,因为只有在用户单击“确定”按钮时才会调用此函数。

this.ok = function ()
{
    $("#cAlertBox").hide();
    $("#turnOffLight").fadeOut("medium");
    bOn = false;

    window.history.go(-1);
};