$.extend({ includePath: '', include: function(file) { var files = typeof file == "string" ? [file] : file; for (var i = 0; i < files.length; i ) { var name = files[i].replace(/^s|s$/g, ""); var att = name.split('.'); var ext = att[att.length - 1].toLowerCase(); var isCSS = ext == "css"; var tag = isCSS ? "link" : "script"; var attr = isCSS ? " type='text/css' rel='stylesheet' " : " language='javascript' type='text/javascript' "; var link = (isCSS ? "href" : "src") "='" $.includePath name "'"; if ($(tag "[" link "]").length == 0) document.write("<" tag attr link ">" tag ">"); } } }); $.include(['script/jquery.divbox.js','/css/pop_win.css']); $(document).ready(function() { var IsFirstAlert = true; var alertQueue = []; window.alert = showAlert; var divalert = ""; divalert = "
"; divalert = "
"; divalert = "
"; divalert = "
TITLE
"; divalert = " "; divalert = "
"; divalert = "
"; divalert = " "; divalert = " "; divalert = "
"; divalert = "
"; divalert = "
"; divalert = "
"; divalert = " "; divalert = "
"; $("body").append(divalert); function showAlert(info) { alertQueue.push(info); if (IsFirstAlert) { IsFirstAlert = false; OpenAlert(); } } $("#alertClose").click(function() { $('#divAlert').CloseDiv() if (alertQueue.length > 0) { setTimeout(OpenAlert, 150); } }); function OpenAlert() { $("#spaAlertMessage").html(alertQueue[0]); alertQueue.splice(0, 1); $("#divAlert").OpenDiv(); } });
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn