gpt4 book ai didi

javascript - JS HTML : Get particular column value after button click

转载 作者:行者123 更新时间:2023-12-03 02:12:20 25 4
gpt4 key购买 nike

我有一个包含几列的表格。每行都有一个编辑按钮。

enter image description here

如果用户单击它,则会打开模态视图。用户可以输入一些值并通过 AJAX 将这些值发送到我的 Controller 。

enter image description here

我的问题是我不知道如何将用户在表中实际单击的特定编辑按钮传输到我的 JS 函数。

过去我每行都有一个编辑按钮:

  <td><a th:href="'/edit/' + *{person.getName()}" class="btn-sm btn-success"
role="button">Edit</a></td>

但这让我看到了一个新的 HTML View ,用户可以在其中进行编辑。对于我的新 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">&times;</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>

最佳答案

第一: id= 必须是唯一的,因此不要重复 ids .. person1age1 、下一个人 1 的 userID1 将是 2,依此类推。您也可以使用 class= 而不是 id=

第二:如果将其更改为类..在编辑按钮上单击您可以使用

alert($(this).closest('tr').find('.userID').text());

然后您可以将 userID 传递给 modal 并在保存编辑时再次获取

Note: This code'll work if you change id="person" to class="person" same thing with age and userID

一次又一次不要对多个元素使用相同的id..删除按钮有重复的id..所以你也需要更改它..并且在更改id之后="delete"class="delete" 然后你就可以使用

$('.delete').on('click' , function(){
// do ajax things for remove then
$(this).closest('tr').remove();
});

如果您动态追加行,则需要使用

$(document).on( 'click' , '.delete' , function(){ /* code here */ }); // use same way with dynamically created element events 

关于javascript - JS HTML : Get particular column value after button click,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49500152/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com