我有一个包含多个列的表。每行都有一个编辑按钮。
如果用户点击它,则会打开模态视图。用户可以输入一些值并通过AJAX将它们发送到我的控制器。
我的问题是我不知道如何将用户实际点击的特定编辑按钮转移到我的JS函数中。
过去我每行都有一个编辑按钮:
<td><a th:href="'/edit/' + *{person.getName()}" class="btn-sm btn-success"
role="button">Edit</a></td>
但这导致我进入了一个用户可以编辑的新HTML视图。使用我的新UI我只想使用模态。
但是由于JS / AJAX对整个表格一无所知,在我看来这对我来说是一种完全错误的方法。此外,我是JS / AJAX的新手
目前我这样调用JS函数:
<button type="button" class="btn btn-primary"
id="subscribe-email-form" onclick="updateModal()">Save
</button>
什么可以解决我的问题?:
如果我可以向updateModal
提供一个参数,那么它可以正常工作,但由于我使用id="myModal"
编辑按钮用data-target="#myModal"
调用模态视图,因此我无法传输任何ID。
这是我的JS,我想要的是找到字段oldID
提前多多谢谢你!
function updateModal() {
var newValues = {};
newValues["newName"] = $("#newName").val();
newValues["newAge"] = $("#newAge").val();
newValues["newID"] = $("#newID").val();
var oldID = "???";
$.ajax({
type: "POST",
contentType: "application/json",
url: "/api/edit/oldID",
data: JSON.stringify(newValues),
dataType: 'json',
timeout: 100000,
success: function (data) {
console.log("SUCCESS: ", data);
display("SUCCESS");
resultObj = data.result;
updateContent(resultObj[0].phone);
},
error: function (e) {
console.log("ERROR: ", e);
display("ERROR");
//display(2);
},
done: function (e) {
console.log("DONE");
display("DONE");
enableSearchButton(true);
}
});
}
以及相关的HTML部分
<div class="container">
<br>
<h3>Overview</h3>
<br>
<div class="container" id="modal-submit">
<div class="col-12">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Age</th>
<th scope="col">ID</th>
</tr>
</thead>
<tbody>
<!--/*@thymesVar id="productList" type="java.util.List"*/-->
<tr id="person" th:each="person : ${elementList}">
<td th:text="${person.getName()}" id="username"></td>
<!--/*@thymesVar id="getTradableBTC" type="java.lang.Double"*/-->
<td th:text="${person.getAge()}" th:id="${person.getName()+person.getAge()}" id="age"></td>
<!--/*@thymesVar id="getTop" type="java.lang.Double"*/-->
<td th:text="${person.getId()} " th:id="${person.getName()+person.getId()}" id="userID"></td>
<td>
<div class="btn-toolbar" role="toolbar">
<!-- Button trigger modal -->
<div class="btn-group mr-2" role="group" aria-label="First group">
<button type="button" class="btn btn-outline-primary btn-sm" data-toggle="modal"
data-target="#myModal">
Edit
</button>
</div>
<div class="btn-group mr-2" role="group" aria-label="Second group">
<button type="button" class="btn btn-outline-danger btn-sm" id="delete">Delete
</button>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<button class="btn btn-primary" type="button" id="addElement">Add Element</button>
<button class="btn btn-light" type="button" id="DeleteAll">Delete all Elements</button>
</div>
</div>
<br>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
data-keyboard="false" data-backdrop="static">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Change data</h5>
<button type="button" class="close" data-dismiss="modal"
aria-label="Close"><span
aria-hidden="true">×</span></button>
</div>
<div class="row">
<div class="col-sm-6">
<div class="modal-body">
<input name="referencia" id="newName" type="text"
class="form-control"
placeholder="Enter new name">
<br>
<input name="referencia" id="newAge" type="text"
class="form-control"
placeholder="Enter new age">
<br>
<input name="referencia" id="newID" type="text"
class="form-control"
placeholder="Enter new id">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light"
data-dismiss="modal">Discard
</button>
<button type="button" class="btn btn-primary"
id="subscribe-email-form" onclick="updateModal()">Save
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<br>
答案 0 :(得分:1)
第一名: id=
必须是唯一的,因此不要为下一个人重复ID person1
,age1
,userID1
1将是2,依此类推..您也可以使用class=
代替id=
第二名:如果将其更改为类..在编辑按钮上单击,您可以使用
alert($(this).closest('tr').find('.userID').text());
然后,您可以将userID传递给modal
并在saveEdit
注意:如果您使用
将id="person"
和class="person"
age
更改为userID
同样的内容,则此代码将有效
一次又一次不要对多个元素使用相同的ID ..删除按钮有重复的ID ..因此您需要更改它..并且在更改后{{1}然后你可以使用
来id="delete"
class="delete"
如果您动态追加行,则需要使用
$('.delete').on('click' , function(){
// do ajax things for remove then
$(this).closest('tr').remove();
});