[原创]使用自定义的alert和confirm

原理,定义自己定义的alert页面(Message.jsp)和confirm页面(confirm.jsp),
之后通过showModalDialog,在javascript中显示和alert()和confirm()相同的效果。

Message.jsp

<%@ page contentType="text/html; charset=GB2312" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//CN">
<HTML>
 <HEAD>
  <title>Message</title>
  <meta content="JavaScript" name="vs_defaultClientScript">
  <LINK href="../ScmStyle.css" type="text/css" rel="stylesheet">
  <script language="javascript">
   document.title = window.dialogArguments[0];
   function OnLoading(){
    var Args = window.dialogArguments;
    document.all("divMessage").innerText = Args[1];
    if(Args[2]=="err"){
     document.all("Img1").src="../images/bq_r1_c1.gif";     
     document.all("divMessage").style.color = "#ff0000";
    }else if(Args[2]=="info"){
     document.all("Img1").src="../images/zy_r1_c1.gif";     
     document.all("divMessage").style.color = "#000000";
    }else{
     document.all("Img1").src="../images/cg_r1_c1.gif";     
     document.all("divMessage").style.color = "#000000";
    }
   }
  </script>
 </HEAD>
 <body οnlοad="OnLoading();" leftmargin="0" topmargin="0">
  <table width="420" cellspacing="0" cellpadding="0" height="165" background="../images/gr.gif">
    <tr align="center">
   <td width="143" height="37">&nbsp;</td>
   <td width="277" height="37">&nbsp;</td>
    </tr>
    <tr align="center">
   <td width="143" height="72" valign="bottom"><img id="Img1" src="" width="81" height="81"></td>
   <td width="277" height="72">
    <div id="divMessage" style="WIDTH: 250px" align="center">
    </div>
   </td>
    </tr>
    <tr align="center">
   <td width="143">&nbsp;</td>
   <td width="272">
    <img src="../images/close1.gif" width="112" height="25" onClick="window.close();" style='cursor:hand;'>
   </td>
    </tr>
  </table>
 </body>
</HTML>

 

confirm.jsp

<html>
<head>
<script language="javascript">
<!--
var args = window.dialogArguments
try{
 document.title = args[0]; //设置标题
}catch(e)
{
//这里屏蔽了错误,防止万一调用的传递参数不足
}    
//-->
</script>
<script language="javascript">
function init()
{
 var args = window.dialogArguments;
 
 try{
  message.innerHTML = args[1]; //设置提示的信息
  if(args[2] == 1)    //设置按钮的选中状态
   ok.focus();
  else
   cancel.focus();
  
 }catch(e)
 {
 //这里屏蔽了错误,防止万一调用的传递参数不足
 }
 ok.attachEvent("onclick",okClick); //设置YES按钮的事件处理函数
 cancel.attachEvent("onclick",cancelClick);//设置NO按钮的事件处理函数
}
function okClick()//YES按钮的事件处理函数
{
  window.returnValue = true;
  window.close();
}
function cancelClick()//NO按钮的事件处理函数
{
  window.returnValue = false
  window.close();
}
window.attachEvent("onload",init)


</script>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<link rel="stylesheet" href="../ScmStyle.css" type="text/css">
</head>

<body bgcolor="F4F7F7" text="#000000" leftmargin="0" topmargin="0">
<table width="420" cellspacing="0" cellpadding="0" height="165" background="../images/pp01.gif">
  <tr>
    <td width="138" align="center"><img src="../images/pp03.gif" width="55" height="49"></td>
    <td width="280" align="center">
      <table width="95%" cellspacing="0" cellpadding="5" height="100%">
        <tr>
          <td height="20" valign="bottom">&nbsp;</td>
        </tr>
        <tr>
          <td align="center" valign="top"><div id="message"></div></td>
        </tr>
        <tr>
          <td align="center" height="70" valign="top">
            <table width="85%" cellspacing="0" cellpadding="0" height="40">
              <tr align="center">
                <td width="50%"><a href="#"><img src="../images/ppok.gif" id="ok" width="92" height="25" border="0"></a></td>
                <td width="50%"><a href="#"><img src="../images/ppcancle.gif" id="cancel" width="92" height="25" border="0"></a></td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
</body>
</html>


调用alert,使用自定义的showMessage()
function showMessage(title,info,type){ 
    var Args = new Array(title,info,type);
 var locationURL = DynamicHtmlGetApplicationUrlRoot()+"common/Message.jsp";
    window.showModalDialog(locationURL,Args,"dialogWidth=420px;dialogHeight=190px;resizable:no;scroll:no;status:no");
}

调用confirm,使用自定义的showConfirm()
function showConfirm(strTitle,strMessage)

 var locationURL = "/common/confirm.jsp";
 var args = new Array();
 args[args.length] = strTitle;
 args[args.length] = strMessage;
 args[args.length] = 1;
 var result = showModalDialog(locationURL,args,"dialogWidth=425px;dialogHeight=190px;resizable:no;scroll:no;status:no");
 return result;
}

参加jsp中实例
showMessage("信息提示","密码不能为空!","info");
if (showConfirm("工作流模块","提交任务号为:" + workflowid + " 的任务吗?")){}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值