js 模拟表单提交

Posted 唯爱金生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 模拟表单提交相关的知识,希望对你有一定的参考价值。

var form = $("<form>");
        form.attr("style", "display:none");
        form.attr("target", "");
        form.attr("method", "post");
        form.attr("action", "/dev/titan2/DownloadSmpZip");
        var input1 = $("<input>");
        input1.attr("type", "hidden");
        input1.attr("name", "smp_ids");
        input1.attr("value", ids);
        var input2 = $("<input>");
        input2.attr("type", "hidden");
        input2.attr("name", "tsk_id");
        input2.attr("value", gtask_now.id);
        $("body").append(form);
        form.append(input1);
        form.append(input2);
        form.submit();
        form.remove();

以上是关于js 模拟表单提交的主要内容,如果未能解决你的问题,请参考以下文章

js模拟form表单提交数据, js模拟a标签点击跳转,避开使用window.open引起来的浏览器阻止问题

js 模拟表单提交

js 模拟form表单post提交

在JS中模拟表单的post提交,进行页面的跳转

apipost怎么模拟表单提交下载功能

.Net模拟提交表单