how to POST radio button values through jquery

前端 未结 3 1639
你的背包
你的背包 2021-01-06 19:41

i have this example code:

 while ($row = mysql_fetch_object($result1)) {                  
                    echo \'

        
3条回答
  •  借酒劲吻你
    2021-01-06 20:14

    Jquery serialize is the best way to do this kind of things: http://docs.jquery.com/Ajax/serialize

    $("#submit_js").click(function() {
        $.post(
        "user_submit.php", 
        $("form").serialize(), 
        function(data){
        });
    });
    

提交回复
热议问题