作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要编写一个程序,从模态中获取输入,并将其放入表格中。每行都需要有一个编辑和删除图标(使用 FontAwesome)。对于这个问题的上下文,我关注删除图标/按钮。目前,删除图标需要是一个按钮,按下后会显示一个模式,询问用户是否确定要删除该行中的信息。该模式将包含两个按钮,让用户可以选择执行两个操作之一("is"按钮 - 删除该行及其所有内容;“否”按钮 - 仅关闭该模式)。下面我给出了 jQuery 代码(需要用 jQuery 编写),到目前为止,我的代码将图标显示为按钮,一旦单击删除图标/按钮,该行就会被删除,但只有这样才是模式显示。 (目前该模式没有任何功能,即没有任何按钮执行任何操作)。
jQuery:
function deleteData(btnDelete) {
$(btnDelete).parents("tr").remove();
}
function openModal() {
$('#modalDelete').show();
}
//function that adds input values to the table
function addToTable() {
//add tbody tag if one is not present
if($("#inputTable tBody").length == 0) {
$("#inputTable").append("<tbody></tbody>");
}
$(function() {
$('#insertImage').on('change', function()
{
var filePath = $(this).val();
console.log(filePath);
});
});
//append inputs to the Table
$("#inputTable tbody").append(
"<tr>" +
"<td>" + + "</td>" +
"<td>" + $("#addName").val() + "</td>" +
"<td>" + $("#addSurname").val() + "</td>" +
"<td>" +
"<button type='button' " +
"class='btn'><i class='fas fa-user-edit' id='pencilIcon'></i></button>" +
"<td>" +
"<button type='button' " +
"onclick='deleteData(this); openModal();'" +
"class='btn'><i class='fas fa-dumpster' id='dumpsterIcon'></i></button>" +
"</button>" +
"</td>" +
"</tr>"
);
}
//add the inputed content to the table
$("#addToTable").click(function(){
addToTable();
});
HTML(表格):
<div class="modal fade" id="addDataToTable" tabindex="-1" role="dialog" aria-labelledby="website" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Add Data to Table</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form class="" action="index.html" method="post">
<form>
<div class="form-group">
<label for="insertImage">Insert Image</label>
<input type="file" class="form-control-file" id="InsertImage" accept="image/x-png,image/gif,image/jpeg" aria-describedby="inputHelp">
</div>
<div class="form-group">
<label for="addName">Name</label>
<input type="text" class="form-control" id="addName">
</div>
<div class="form-group">
<label for="addSurname">Surname</label>
<input type="text" class="form-control" id="addSurname">
</div>
</form>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="addToTable">Add to Table</button>
</div>
</div>
</div>
</div>
HTML(删除模式):
<div class="modal" tabindex="-1" role="dialog" id="modalDelete">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Are you sure you want to delete?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Yes</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">No</button>
</div>
</div>
</div>
</div>
任何帮助将不胜感激!!
最佳答案
这是一个纯 JavaScript 解决方案:
var delete = confirm("Are you sure you want to delete this row?");
if (delete ) {
//code to delete
}
关于javascript - 如何提示一个模式,询问用户是否要删除所选行? (jQuery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60569056/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!