日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

原生JS实现表单序列化serialize()

發布時間:2023/12/13 综合教程 34 生活家
生活随笔 收集整理的這篇文章主要介紹了 原生JS实现表单序列化serialize() 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

有一個form表單,要用AJAX后臺提交,原來想拼接json,但是數據多了麻煩,不靈活。

用HTML5的FormData來初始化表單

var formdata=new FormData(document.getElementById("advForm"));

看似還可以,但發現有兩個問題,

一,formdata.get()方法不知為什么用不了

二,Form Data 數據格式不如Jq的簡潔,

WebKitFormBoundary29h06FRZequJgQtR
        var stu={
            name:"冷榮富",
            age:22,
            sex:"男"
        };
        $.ajax({
            type : "POST",  //提交方式
            url : "http://localhost/jsonTest.php",//路徑,www根目錄下
            data : {
                "student" : stu
            },//數據,這里使用的是Json格式進行傳輸
            success : function(result) {//返回數據根據結果進行相應的處理
                alert(result);
            }
        });

這段JQ提交的數據是序列化的

網查如然不用我造輪子了,轉一個可用的

使用原生的js模擬了表單序列化,代碼中對表單處理盡可能地進行文字說明
其中對于url,字段名稱,中文進行了使用了encodeURIComponent()進行編碼。

Object.prototype.serialize = function(){
    var res = [],   //存放結果的數組
        current = null, //當前循環內的表單控件
        i,  //表單NodeList的索引
        len, //表單NodeList的長度
        k,  //select遍歷索引
        optionLen,  //select遍歷索引
        option, //select循環體內option
        optionValue,    //select的value
        form = this;    //用form變量拿到當前的表單,易于辨識

    for(i=0, len=form.elements.length; i<len; i++){

        current = form.elements[i];

        //disabled表示字段禁用,需要區分與readonly的區別
        if(current.disabled) continue;

        switch(current.type){
            //可忽略控件處理
            case "file":    //文件輸入類型
            case "submit":  //提交按鈕
            case "button":  //一般按鈕
            case "image":   //圖像形式的提交按鈕
            case "reset":   //重置按鈕
            case undefined: //未定義
                break;
            //select控件
            case "select-one":
            case "select-multiple":
                if(current.name && current.name.length){
                    console.log(current)
                    for(k=0, optionLen=current.options.length; k<optionLen; k++){
                        option = current.options[k];
                        optionValue = "";
                        if(option.selected){
                            if(option.hasAttribute){
                                optionValue = option.hasAttribute('value') ? option.value : option.text
                            }else{
                                //低版本IE需要使用特性 的specified屬性,檢測是否已規定某個屬性
                                optionValue = option.attributes('value').specified ? option.value : option.text;    
                            }
                        }
                        res.push(encodeURIComponent(current.name) + "=" + encodeURIComponent(optionValue));
                    }
                }
                break;

            //單選,復選框
            case "radio":
            case "checkbox":
                //這里有個取巧 的寫法,這里的判斷是跟下面的default相互對應。
                //如果放在其他地方,則需要額外的判斷取值
                if(!current.checked) break;

            default:
                //一般表單控件處理
                if(current.name && current.name.length){
                    res.push(encodeURIComponent(current.name) + "=" + encodeURIComponent(current.value));
                }
        }
    }
    return res.join("&");
}

對HTML表單使用:

formElement.serialize();

得到類似如下結果:a=1&b=2&c=3&d=4&e=5

相關鏈接:https://blog.csdn.net/qq_35087256/article/details/81253559

總結

以上是生活随笔為你收集整理的原生JS实现表单序列化serialize()的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。