在右下角弹出提示

来源:岁月联盟 编辑:zhuzhu 时间:2004-12-15
public static string GetMsg(string strDescription)
{
string strScript = "<script language=/"javascript/">";
if(strDescription != "")
{
strScript += "document.write(/"<div id='popmsg' style='position:absolute;right:0px;bottom:0px;width:260px;height:165px;z-index:1;padding:20px 20px 20px 20px;word-break:break-all;text-align:left;background-image: url(images/popmsgbg.gif);'>"+strDescription+"</div>/");";

strScript += "j=3;"+
"function popClose() {"+
" j -= 1;"+
" if (j > 0){setTimeout(/"popClose()/",1000);}"+
" else{popmsg.style.display=/"none/";}"+
"}";

strScript += "popClose();";

}
strScript += "</script>";

return strScript;
}