Administrator
2023-04-17 63fbfddabe08e353ad75e495c2ac8dc5203da88c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//错误提示
function showErrmsg(str){
    setErrmsg();
    var neelerErrmsg = $("#neelerErrmsg");
    neelerErrmsg.text(str).fadeIn("slow", function () {
        setTimeout(function(){
            neelerErrmsg.fadeOut("slow");
        }, 2000);
    });
}
 
function setErrmsg(){
    var neelerErrmsg = $("<div></div>")
        .attr("id", "neelerErrmsg")
        .css({
            "display": "none",
            "position": "fixed",
            "top": "150px",
            "left": "20%",
            "width": "60%",
            "height": "50px",
            "border": "1px solid #000",
            "border-radius": "10px",
            "line-height": "50px",
            "text-align": "center",
            "background": "rgba(0,0,0,.6)",
            "color": "#FFF",
            "z-index": "999999"
        });
    $("body").prepend(neelerErrmsg);
}