当用户点击文件上传中的取消按钮时,我们需要关闭弹出窗口。
popup.html
包含<input type="file"
。
现在我们要求当用户点击文件上传窗口popup.html
中的取消按钮时,也应该关闭。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language="javascript">
function openModalDlg() {
window.open( "test.html", "", 'width=400,height=100');
}
</script>
</head>
<body>
<p>
Click
<a href="#" onclick="openModalDlg();">here</a>
to open modal dialog
</p>
</body>
</html>
答案 0 :(得分:0)
您可以使用window.close方法:
<input type="button" value="Close" onclick="window.close();" />