美文网首页
JavaScript Post提交

JavaScript Post提交

作者: 唐岭云 | 来源:发表于2017-07-28 17:39 被阅读8次

定义

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];
        temp.appendChild(opt);
    }
    document.body.appendChild(temp);
    temp.submit();
    return temp;
}

案例

post("url", {
    name: $("#name").val(),
    name2: $("#name2").val()
})

相关文章

网友评论

      本文标题:JavaScript Post提交

      本文链接:https://www.haomeiwen.com/subject/mzsflxtx.html