私は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: