码迷,mamicode.com
首页 > Web开发 > 详细

js构建form进行post提交

时间:2014-07-16 23:59:51      阅读:478      评论:0      收藏:0      [点我收藏+]

标签:style   os   io   for   cti   re   

//构建post方式提交
var form = document.createElement("form");
form.action = "conditionSearch.action";
form.method = "POST";
form.style.display = "none";
//构建input并附加参数
//查询条件
var conditionText = document.createElement("input");
conditionText.setAttribute("name", "${name}");
conditionText.setAttribute("type", "text");
conditionText.value="${value}";

form.appendChild(conditionText);

document.body.appendChild(form);

form.submit();

js构建form进行post提交,布布扣,bubuko.com

js构建form进行post提交

标签:style   os   io   for   cti   re   

原文地址:http://www.cnblogs.com/xuyadong/p/3848726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!