我正在使用 Jquery 动态创建行数。如果我想将它发送到服务器,我该如何发送该数据。我尝试使用表单,但没有奏效
我正在使用以下代码:
$(document).ready(function() {
// Add button functionality
$("table.dynatable button.add").click(function() {
var master = $(this).parents("table.dynatable");
var prot = master.find(".prototype").clone();
prot.attr("class", "")
master.find("tbody").append(prot);
});
在我的身体里:
<th>Numbere</th>
<th><button class="add">Add</button></th>
</tr>
也在这里为什么我们需要
prot.attr("class", "")
我能够动态添加我想要的条目数。但是使用 HTTP 将此数据发送到服务器时遇到问题。
我想使用 Ajax 调用,但如何在此处提取和获取数据。
$.ajax({
url: "/temp",
type: "post",
data: data,
dataType: "json",
contentType: