• jQuery序列化


    • html代码如下:
        <form>
            用户名:<input type="text" name="user"/>
            邮件:<input type="text" name="email"/>
            <input type="radio" name="sex" value="男"/><input type="radio" name="sex" value="女"/><input type="button" value="提交"/>
        </form>
        <div id="box"></div>
    • jQuery代码如下
        $("form input[type=button]").click(function () {
            $.ajax({
                type: "POST",
                url: "/user/",
                data:$("form").serialize(),//序列化form表单数据
                success:function (response,status,xhr) {
                    $("#box").html(response);
                }
            });
        });
        $("form input[name=sex]").click(function(){
           $("#box").html(decodeURIComponent($(this).serialize()));//序列化radio数据,并对其解码
        });
  • 相关阅读:
    POJ-2386 Lake Counting
    白书-部分和问题
    STL-map/multimap 简述
    STL-set&&multiset 集合
    STL-优先级队列-priority_queue
    挣脱虚无,化身虚无
    C
    B
    A
    STL-list 链表
  • 原文地址:https://www.cnblogs.com/Yellow0-0River/p/5503461.html
Copyright © 2020-2023  润新知