function post(URL, PARAMS) {
var temp = document .createElement("フォーム");
temp.action = URL;
temp.method = "投稿";
temp.style.display = "なし";
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();
}
//使用方法
post('pages/statisticsJsp/excel.action', {html :prnhtml,cm1:'sdsddsd',cm2:'haha'});