手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >用Jquery重写windows.alert方法实现思路
用Jquery重写windows.alert方法实现思路
摘要:已经在IE8,firefox3.0.11下面测试通过复制代码代码如下:$.extend({includePath:'',include:fu...

已经在 IE8 , firefox3.0.11下面测试通过

复制代码 代码如下:

$.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 += "<div id="divAlert">";

divalert += " <div>";

divalert += " <div id="">";

divalert += " <div ><h3>TITLE</h3></div>";

divalert += " <div></div>";

divalert += " </div>";

divalert += " <div>";

divalert += " <span id="spaAlertMessage"></span><br />";

divalert += " <div></div>";

divalert += " </div>";

divalert += " <p><input id='alertClose' type="button" value="确定" /><input type="reset" value="取消" /><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插件

【用Jquery重写windows.alert方法实现思路】相关文章:

Jquery使用css方法改变样式实例

jquery中map函数遍历数组用法实例

JavaScript中String.match()方法的使用详解

Jquery使用val方法读写value值

JQuery中上下文选择器实现方法

在JavaScript中处理字符串之fontcolor()方法的使用

JQuery控制Radio选中方法分析

jQuery插件pagewalkthrough实现引导页效果

探索angularjs+requirejs全面实现按需加载的套路

JQuery中DOM事件合成用法实例分析

精品推荐
分类导航