使用js进行post请求

    function post(URL, PARAMS) {      
            var temp = document.createElement("form");      
            temp.action = URL;      
            temp.method = "post";      
            temp.style.display = "none";      
            for (var x in PARAMS) {      
                var opt = document.createElement("textarea");      
                opt.name = x;      
                opt.value = PARAMS[x];      
                // alert(opt.name)      
                temp.appendChild(opt);      
            }      
            document.body.appendChild(temp);      
            temp.submit();      
            return temp;      
        }      


        //调用方法 如      
        post('/tools/activityData', {act_name :act_name,act_id:act_id,act_pv:act_pv,act_uv:act_uv,order_users:order_users,orders_need:orders_need,order_need_pay:order_need_pay,rebate_success_sum:rebate_success_sum,rebate_ratio:rebate_ratio});

你可能感兴趣的:(js,javascript)