使用jQuery点击添加按钮弹出一个添加页面子窗口
在Web开发中,经常会遇到需求需要在点击按钮时弹出一个子窗口来进行添加操作。本文将介绍如何使用jQuery来实现这一功能。
准备工作
在开始之前,我们先准备好HTML和CSS代码用来创建一个按钮和一个弹出的添加页面子窗口。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button id="addButton">Add</button>
<div class="modal" id="addModal">
<div class="modal-content">
<span class="close">×</span>
<h2>Add Item</h2>
<input type="text" placeholder="Enter item name">
<button>Add</button>
</div>
</div>
<script src="
<script src="script.js"></script>
</body>
</html>
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
jQuery实现点击按钮弹出添加页面子窗口
现在,我们将使用jQuery来实现点击按钮弹出添加页面子窗口的功能。在script.js
中添加以下代码:
$(document).ready(function() {
$("#addButton").on("click", function() {
$("#addModal").css("display", "block");
});
$(".close").on("click", function() {
$("#addModal").css("display", "none");
});
});
在上面的代码中,我们首先使用$(document).ready()
来确保DOM加载完成后执行代码。然后,我们监听添加按钮的点击事件,在点击时将添加页面子窗口显示出来。同时,我们也监听关闭按钮的点击事件,点击关闭按钮时隐藏添加页面子窗口。
完整代码
现在,我们已经完成了点击按钮弹出添加页面子窗口的功能。整个代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button id="addButton">Add</button>
<div class="modal" id="addModal">
<div class="modal-content">
<span class="close">×</span>
<h2>Add Item</h2>
<input type="text" placeholder="Enter item name">
<button>Add</button>
</div>
</div>
<script src="
<script src="script.js"></script>
</body>
</html>
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
$(document).ready(function() {
$("#addButton").on("click", function() {
$("#addModal").css