如何显示非模式/无模式HTML/JavaScript对话



我从w3schools的一个例子中创建了一个模态对话。但我一直无法找到如何使其成为非模态的指导。也就是说,是否可以显示对话,而我仍然可以在后台按下链接?

事实上,我试图实现的是允许对话中的链接可以点击,并允许它后面主页上的JavaScript对这些事件做出反应。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy"  content="connect-src * 'unsafe-inline';">
<style>
/* The Modal (background) */
.modal {
display:block; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow-y: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} 
</style>
</head>
<body>
<a href='#'>Press me press me I am blocked</a>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close" onclick="modalHide()">&times;</span>
<div id="modtext">Some text in the Modal..</div>
</div>
</div>
<script>
function modalHide(){
document.getElementById("myModal").style.display = "none";
}
</script>
</body>
</html>

只需移除(.modal(模态背景,因为它作为覆盖层工作。

/* The Modal (background) */
.modal {
display:block; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow-y: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

上面的代码正在创建一个覆盖并显示里面的对话框。如果你删除它,你的对话框后面的链接就会起作用。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy"  content="connect-src * 'unsafe-inline';">
<style>
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} 
</style>
</head>
<body>
<a href='#'>Press me press me I am blocked</a>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close" onclick="modalHide()">&times;</span>
<div id="modtext">Some text in the Modal..</div>
</div>
</div>
<script>
function modalHide(){
document.getElementById("myModal").style.display = "none";
}
</script>
</body>
</html>

相关内容

  • 没有找到相关文章

最新更新