用Jquery重寫windows.alert方法實現思路

來源:互聯網
上載者:User

已經在 IE8 , firefox3.0.11下面測試通過 複製代碼 代碼如下:$.extend({
includePath: '',
include: function(file)
{
var files = typeof file == "string" ? : 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 += "<div style=\"width:380px; height:180px; overflow:hidden;display:none\" id=\"divAlert\">";
divalert += " <div class=\"win_c\">";
divalert += " <div class=\"win_t\" id=\"\">";
divalert += " <div class=\"mail_timg\" ><h3>TITLE<\/h3><\/div>";
divalert += " <div class=\"clear\"><\/div>";
divalert += " <\/div>";
divalert += " <div class=\"alrt2\" style=\"text-align:center\">";
divalert += " <span id=\"spaAlertMessage\" class=\"f14 ifont\"><\/span><br \/>";
divalert += " <div class=\"clear\"><\/div>";
divalert += " <\/div>";
divalert += " <p class=\"Acenter\"><input id='alertClose' type=\"button\" value=\"確定\" class=\"btn7\" \/> <input type=\"reset\" value=\"取消\" style=\"display:none\" class=\"btn8\" \/><br \/><br \/><\/p>";
divalert += " <p> <\/p>";
divalert += " <\/div>";
divalert += " ";
divalert += "<\/div>";
$("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();
}
});

註:以上引用js與CSS的jquery外掛程式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.