除了使用警报功能之外,我如何在ajax中打印警报消息

时间:2018-06-04 06:31:15

标签: javascript html ajax

除了使用警报功能外,如何在ajax中打印警报消息。

if (x.readyState == 4 && x.status == 200)
    {
        var msg=x.responseText.trim();
        if(msg=="Thank you for booking and Have a nice Journey!!!")
        {

            alert("Successfully submitted");
            window.location="home.html";
        }

    }

1 个答案:

答案 0 :(得分:2)

这里的代码示例:

function displayAlertMessage(message) {

    var timeOut = 5
    jQuery('#messageBox').text(message).fadeIn()
    jQuery('#messageBox').css("display", "block")

    setTimeout(function() {
        jQuery('#messageBox').fadeOut()
        jQuery('#messageBox').css("display", "none")
      }, timeOut * 1000);
    }

messageBox是您希望显示警报消息的div标签的ID。 timeOut是您希望在屏幕上保留消息的秒数。