首页 > 编程语言 > 详细

用javascript动态创建并提交表单form,表格table

时间:2014-07-03 20:29:39      阅读:473      评论:0      收藏:0      [点我收藏+]

<script>

//helper function to create the form
function getNewSubmitForm(){
var submitForm = document.createElement("FORM");
document.body.appendChild(submitForm);
submitForm.method = "POST";
return submitForm;
}

//helper function to add elements to the form
function createNewFormElement(inputForm, elementName, elementValue){
var newElement = document.createElement("<input name=‘"+elementName+"‘ type=‘hidden‘>");
inputForm.appendChild(newElement);
newElement.value = elementValue;
return newElement;
}

//function that creates the form, adds some elements
//and then submits it
function createFormAndSubmit(){
var submitForm = getNewSubmitForm();
createNewFormElement(submitForm, "field1", "somevalue");
createNewFormElement(submitForm, "field2", "somevalue");
submitForm.action= "someURL";
submitForm.submit();
}
</script>

<input type="button" value="Click to create form and submit" onclick="createFormAndSubmit()">

 

http://blog.csdn.net/honey_claire/article/details/7658490

http://bbs.csdn.net/topics/300212131

http://bbs.csdn.net/topics/390693892

http://www.aa25.cn/code/458.shtml

用javascript动态创建并提交表单form,表格table,布布扣,bubuko.com

用javascript动态创建并提交表单form,表格table

原文:http://www.cnblogs.com/gyjWEB/p/3821088.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!