gpt4 book ai didi

javascript - 使用 JavaScript 将多个值附加到
转载 作者:行者123 更新时间:2023-12-03 03:48:34 27 4
gpt4 key购买 nike

我的 MVC View 中有一个表。

这是 HTML 代码:

<table class="table" >
@{int rowNo = 0;}
<tr>
<td data-toggle="modal" data-target="#newAppointment" style="height: 40px; width: 40px; background: red;">
<img style="object-fit: cover;" src='@Url.Content("~/Images/plus.png")'/>
</td>
</tr>
<tr style="background: white">
<th></th>
<th style="font-size: 20px; text-align: center;color:#1d69b4;">
Date of birth
</th>
<th style="font-size: 20px; text-align: center;color:#1d69b4;">
Last Name
</th>
<th style="font-size: 20px; text-align: center;color:#1d69b4;">
First Name
</th>
<th style="font-size: 20px; text-align: center;color:#1d69b4;">
Kasse
</th>
<th style="font-size: 20px; text-align: center;color:#1d69b4;">
Last visit
</th>
<th style="font-size: 20px; text-align: center;color:#1d69b4;">
Last edit
</th>
<th></th>
</tr>
<tbody id="patients">
@foreach (var item in Model)
{
<tr>
<td class="point">
@(rowNo += 1)
</td>
<td class="title">
@Html.DisplayFor(modelItem => item.Date_of_Birthday)
</td>
<td class="title">
@Html.DisplayFor(modelItem => item.Last_name)
</td>
<td class="title">
@Html.DisplayFor(modelItem => item.First_name)
</td>
</tr>
}
</tbody>
</table>

我还有一个 AJAX 脚本将值附加到表中:

<script>
$('#search').click(function () {
$("#patients").empty();
var lname = $("#lname").val();

var model = {
LastName: lname
};

$.ajax({
url: '@Url.Action("ResultOfSearch", "PatientDatabase")',
contentType: 'application/json; charset=utf-8',
data: JSON.stringify(model),
type: 'POST',
dataType: 'json',
processData: false,
success: function(data) {
var list = data;
//alert(list);
var listnumber = 0;
for (var i = 0; i <= list.length - 1; i++) {
var patientsList = ' <td class="point">' +
listnumber +
1 +
'</td>' +
'<td class="title"> ' +
list[i].dateOfBirthday +
'</td>' +
'<td class="title"> ' +
list[i].lastName +
'</td>' +
'<td class="title"> ' +
list[i].firstName +
'</td>';
$("#patients").append(patientsList);
};
}
});
});
</script>

它工作得很好,但是当我有多个值时,它会附加到一行中。

如何正确附加它?

最佳答案

附加tr

更改append代码如下。

 $("#patients").append('<tr>'+patientsList+'</tr>');

关于javascript - 使用 JavaScript 将多个值附加到 <table>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45266037/

27 4 0