showModalDialog

Posted lxh520

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了showModalDialog相关的知识,希望对你有一定的参考价值。

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html">
<title>异常提示</title>
<style type="text/css">
.header{
text-align:center;
}

.con{
width:100%;
height:100%;
overflow: auto;
font-size: 14px;
}

</style>

<script type="text/javascript">
var expectMsg = "";
window.onload = function(){
    var parentWin = window.dialogArguments;
    expectMsg = parentWin.form1.expectMsg.value;
    if(expectMsg!=""){
        expectMsg = expectMsg.replace(/
/g,"<br/>");
        document.getElementById("content").innerHTML = expectMsg ;
    }
}

function confirm(){
    var parentWin = window.dialogArguments;
    parentWin.sendPaperRe();
    this.close();
}
function remove(){
    this.close();
}
</script>
</head>
<body>
<div class="header">
<input type="button" value="确定         "  onclick="confirm()"  /><input  type="button" value="         取消"  onclick="remove()" />
</div>
<br/>
<div id=‘content‘  class="con">
</div>
</body>
</html>

 

以上是关于showModalDialog的主要内容,如果未能解决你的问题,请参考以下文章

JS 创建模态窗口showModalDialog()兼容性的问题

将 showModalDialog() 的内容添加到剪贴板 Google Script

问题与解决showModalDialog is not defined 的解决方案

解决showModalDialog和chrome不兼容的其他方法

showModalDialog is not defined 的解决方案

Uep弹窗showModalDialog的使用