0

ユーザーフォーム入力から取得したシリアル化されたデータと一緒に、いくつかの追加データを投稿したいと思います。

例えば、

$.post('update.php', $("#theform").serialize(),{cposition:swidget}, function(data) {

});

これは追加投稿を投稿しません。追加データを投稿するにはどうすればよいですか?

4

3 に答える 3

1

The jQuery serialize function yields its values in the &key=value format. It does this using $.param internally. You would be able to append your own values in the same manner:

$.post('update.php', [$('#theform').serialize(), $.param({cposition:swidget})].join('&'), function(data) { ... });
于 2013-06-11T07:14:33.747 に答える
1

シリアル化された文字列の末尾に何かを追加できます。

$.post('update.php', $("#theform").serialize() + '&cposition:swidget', function(data) {

});
于 2013-06-11T07:16:48.557 に答える
1

できるよ:

var data = $('#theform').serializeArray();
data.push({cposition: swidget});
//then
$.post('update.php', data, function(data) {

});
于 2013-06-11T07:14:10.023 に答える