如何在没有jQuery的情况下序列化表单?

And*_*lli 14 javascript forms serialization json

由于很多原因(首先是:学习javascript),我需要序列化一个没有jQuery的表单,并将生成的序列化数据结构发送到带有ajax的php页面.序列化数据必须采用JSON格式.

我怎样才能做到这一点?

- 编辑 -

这就是我的表单的样子:http://jsfiddle.net/XGD4X/

Jef*_*eff 2

我正在研究类似的问题,并且我同意首先学习如何在不使用框架的情况下编程是值得的。我使用数据对象(BP.reading)来保存信息,在我的例子中是血压读数。然后 JSON.stringify(dataObj) 为您完成工作。

这是“保存”按钮单击的处理程序,它是 dataObj 上的一个方法。请注意,我使用表单而不是表格来输入数据,但应该应用相同的想法。

update: function () {
            var arr = document.getElementById("BP_input_form").firstChild.elements,
                request = JDK.makeAjaxPost();  // simple cross-browser httpxmlrequest with post headings preset

            // gather the data and store in this data obj
            this.name = arr[0].value.trim();
            ...
            this.systolic = arr[3].value;
            this.diastolic = arr[4].value;

            // still testing so just put server message on page
            request.callback = function (text) {
                msgDiv.innerHTML += 'server said ' + text;
            };
            // 
            request.call("BP_update_server.php", JSON.stringify(this));
        }
Run Code Online (Sandbox Code Playgroud)

我希望这是有帮助的

* 编辑以显示通用版本 *

在我的程序中,我使用对象来发送、接收、显示和输入相同类型的数据,因此我已经准备好了对象。为了获得更快的解决方案,您可以仅使用一个空对象并向其中添加数据。如果数据是一组相同类型的数据,那么就使用数组。但是,对于对象,您在服务器端拥有有用的名称。这是一个未经测试的更通用的版本,但通过了 jslint。

function postUsingJSON() {
    // collect elements that hold data on the page, here I have an array
    var elms = document.getElementById('parent_id').elements,
        // create a post request object
        // JDK is a namespace I use for helper function I intend to use in other
        //  programs or that i use over and over
        // makeAjaxPost returns a request object with post header prefilled
        req = JDK.makeAjaxPost(),
        // create object to hold the data, or use one you have already
        dataObj = {},   // empty object or use array dataArray = []
        n = elms.length - 1;     // last field in form

    // next add the data to the object, trim whitespace
    // use meaningful names here to make it easy on the server side
    dataObj.dataFromField0 = elms[0].value.trim();  // dataArray[0] =
    //        ....
    dataObj.dataFromFieldn = elms[n].value;

    // define a callback method on post to use the server response
    req.callback = function (text) {
        // ...
    };

    // JDK.makeAjaxPost.call(ULR, data)
    req.call('handle_post_on_server.php', JSON.stringify(dataObj));
}
Run Code Online (Sandbox Code Playgroud)

祝你好运。