0

我正在使用 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: 
4

1 回答 1

2

您可以从 HTML 表中提取数据到关联数组(JSON 对象),然后将其发布到服务器

如何使用 jQuery 从 HTML 表中提取数据到关联数组中?

http://encosia.com/use-jquery-to-extract-data-from-html-lists-and-tables/

于 2013-04-27T19:28:23.637 回答