jquery 模态窗口(jquery弹出模态框)

index.html

<html>

<head>

<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>

<title>模态窗口</title>

</head>

<body>

<script>

//alert(1);

function pop(){

//传递参数到模态窗口

var obj=new Object();

obj.name="Hello World---来自父窗口";

var returnStr = window.showModalDialog("model.html",obj,

"dialogHeight=200px;dialogTop=200px;dialogLeft=200px;");

alert("模态窗口返回参数"+returnStr);

//刷新页面

window.location.reload();

}

</script>

<button onClick="pop()">打开模态窗口</button>

<p>模态窗口传参数,并获取返回值</p>

</body>

</html>

model.html

<html>

<head>

<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>

</head>

<body>

<script>

// 接受父窗口的参数

var obj=window.dialogArguments;

alert(obj.name);

// 返回参数到父窗口

window.returnValue=’Hello World---来自模态窗口’;

</script>

模态窗口

</body>

</html>

如果直接在浏览器中无法正常运行,那么就将其放在服务器容器中。

jquery 模态窗口(jquery弹出模态框)

版权声明:本文内容由互联网用户投稿发布,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2211788188@qq.com 举报,一经查实,本站将立刻删除。如需转载请注明出处:https://www.wptmall.com/a/article/17539

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注