时间:2021-05-18
已经在 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 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插件
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Android编程重写ViewGroup实现卡片布局的方法。分享给大家供大家参考,具体如下:实现效果如图:实现思路1.重写onMeasure(in
实现思路重写Spring的AbstractRoutingDataSource抽象类的determineCurrentLookupKey方法。我们来看下Sprin
jquery如何实现简单的表单验证,我们先跟大家分享一下实现思路。大概思路:先为每一个required添加必填的标记,用each()方法来实现。在each()方
效果图实现思路要实现绘图,通常需要自定义一个UIView的子类,重写父类的-(void)drawRect:(CGRect)rect方法,在该方法中实现绘图操作若
废话不多说了,直接给大家贴代码了。jQuery(function($){//备份jquery的ajax方法var_ajax=$.ajax;//重写ajax方法,