我是模态按钮的新手。由于某种原因,“删除”按钮不显示“您确定要删除吗?”的问题。并简单地执行删除操作。我需要显示确认,这是一个重要的验证。我一直在寻找解决方案,但目前还没有结果。我附上源代码。任何指导将不胜感激。谢谢。
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.topnav .icon {
display: none;
}
p.centrartextoparrafo {
text-align: center;
padding: 16px 16px;
text-decoration: none;
font-size: 17px;
}
h1.centrartextoh1titulopaginaprincipal {
text-align: center;
}
h2.centrartextoh2titulopaginaprincipal {
text-align: center;
}
#copyright {
float: left;
padding-bottom: 10px;
padding-top: 10px;
text-align: center;
bottom: 0px;
width: 100%;
}
table.center {
margin-left:auto;
margin-right:auto;
}
table, th, td {
border: 20px solid white;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
</style>
我附上显示两个按钮的屏幕截图。编辑按钮工作正常;删除按钮在删除记录之前不会显示确认问题。
暮色呼如
翻阅古今
相关分类