6

我正在做的是使用 JSON 创建一个表单,然后可以编辑该表单并生成新的 JSON 对象。我遇到的问题似乎是获取表单 ID。我用来返回 JSON 对象的代码是:

form = document.forms[0];
$.fn.serializeObject = function()
{
    alert("start serializeObject");
    var o = {};
    var a = this.seralizeArray();
    $.each(a, function(){
        if (o[this.name] !== undefined) {
            if (!o[this.name].push) {
                o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        } else {
            o[this.name] = this.value || '';
        }
    });
    return o;
    alert(o);
};

$(function() {
    alert("here");
    form.submit(function(){
        result.append(JSON.stringify(form.serializeObject()));
        return false;
    });
});

这只是刷新页面我不知道为什么。该程序不在服务器上,也不能在服务器上使用。我的意思是只有每一个都将在本地机器上本地运行,没有 apache2 设置。

谢谢。

4

2 回答 2

10

你的代码可以很容易地编写。我就是这样做的:

阿贾克斯:

$('#formID').on('submit',function () {
    $.ajax({
        url: 'submit.php',
        cache: false,
        type: 'POST',
        data : $('#formID').serialize(),
        success: function(json) {
            alert('all done');
        }
    });
});

如果您不使用 Ajax 发送它,您为什么要这样做?如果您只是提交表单,您可以使用 PHP 来完成,如下所示:

<?php
$json_object = json_decode($_POST);
?>
于 2012-06-19T11:32:04.903 回答
2
$('#formID').on('submit',function (e) {
    e.preventDefault();
    $.ajax({
        url: 'submit.php',
        cache: false,
        type: 'POST',
        data : $('#formID').serialize(),
        success: function(json) {
        alert('all done');
    }
    });
});

如果您不想重定向或刷新,请使用 e.preventDefault();

于 2013-11-28T13:07:26.617 回答