当前位置 : 主页 > 网络编程 > JavaScript >

Post数据并打开新页面

来源:互联网 收集:自由互联 发布时间:2021-07-03
在新打开的页面中Post数据 例子: post('ExportImg.ashx', { "imgdata": Data }); function post(URL, PARAMS) { var temp_form = document.createElement("form"); temp_form.action = URL; temp_form.target = "_blank"; temp_form.method = "

在新打开的页面中Post数据

例子: post('ExportImg.ashx', { "imgdata": Data });

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

网友评论