<script type="text/javascript">
var oPopup = window.createPopup();
var popTop=50;
function popmsg(msgstr)
{
re = /<div id='topcontainer'>(?:(?!<\/?marks>)[\s\S])*<\/div>/gi;
//匹配开头为a~z中任意字符并且不区分大小写
//alert(msgstr.match(re)); //true
oPopup.document.body.innerHTML = msgstr.match(re);
popshow();
}
function popshow(){
window.status=popTop;
if(popTop>1720){
clearTimeout(mytime);
oPopup.hide();
return;
}else if(popTop>1520&&popTop<1720){
oPopup.show(screen.width-250,screen.height,241,1720-popTop);
}else if(popTop>1500&&popTop<1520){
oPopup.show(screen.width-250,screen.height+(popTop-1720),241,172);
}else if(popTop<180){
oPopup.show(screen.width-250,screen.height,241,popTop);
}else if(popTop<220){
oPopup.show(screen.width-250,screen.height-popTop,241,172);
}
popTop+=10;
var mytime = setTimeout("popshow();", 50);
}
var xmlhttp;
function loadXMLDoc(url) {
xmlhttp = null;
if (window.XMLHttpRequest) {// code for all new browsers
xmlhttp = new XMLHttpRequest();
}
else if (window.ActiveXObject) {// code for IE5 and IE6
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp != null) {
xmlhttp.onreadystatechange = state_Change;
xmlhttp.open("GET", url, true);
xmlhttp.send(null);
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = false;
xmlDoc.loadXML(xmlhttp.responseText);
return xmlhttp.responseText;
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
function state_Change() {
if (xmlhttp.readyState == 4) {// 4 = "loaded"
if (xmlhttp.status == 200)
{
// 200 = OK
}
else
{
//alert(xmlhttp.status);
alert("Problem retrieving XML data");
}
}
}
popmsg(loadXMLDoc("DAlert.aspx"));
</script>
var oPopup = window.createPopup();
var popTop=50;
function popmsg(msgstr)
{
re = /<div id='topcontainer'>(?:(?!<\/?marks>)[\s\S])*<\/div>/gi;
//匹配开头为a~z中任意字符并且不区分大小写
//alert(msgstr.match(re)); //true
oPopup.document.body.innerHTML = msgstr.match(re);
popshow();
}
function popshow(){
window.status=popTop;
if(popTop>1720){
clearTimeout(mytime);
oPopup.hide();
return;
}else if(popTop>1520&&popTop<1720){
oPopup.show(screen.width-250,screen.height,241,1720-popTop);
}else if(popTop>1500&&popTop<1520){
oPopup.show(screen.width-250,screen.height+(popTop-1720),241,172);
}else if(popTop<180){
oPopup.show(screen.width-250,screen.height,241,popTop);
}else if(popTop<220){
oPopup.show(screen.width-250,screen.height-popTop,241,172);
}
popTop+=10;
var mytime = setTimeout("popshow();", 50);
}
var xmlhttp;
function loadXMLDoc(url) {
xmlhttp = null;
if (window.XMLHttpRequest) {// code for all new browsers
xmlhttp = new XMLHttpRequest();
}
else if (window.ActiveXObject) {// code for IE5 and IE6
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp != null) {
xmlhttp.onreadystatechange = state_Change;
xmlhttp.open("GET", url, true);
xmlhttp.send(null);
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = false;
xmlDoc.loadXML(xmlhttp.responseText);
return xmlhttp.responseText;
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
function state_Change() {
if (xmlhttp.readyState == 4) {// 4 = "loaded"
if (xmlhttp.status == 200)
{
// 200 = OK
}
else
{
//alert(xmlhttp.status);
alert("Problem retrieving XML data");
}
}
}
popmsg(loadXMLDoc("DAlert.aspx"));
</script>