我是靠谱客的博主 冷傲鱼,这篇文章主要介绍javascript动态创建form表单,现在分享给大家,希望可以做个参考。

//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="&quot;+elementName+&quot;" 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();
} </noscript>
<input type="button" value="Click to create form and submit" οnclick="createFormAndSubmit()">

最后

以上就是冷傲鱼最近收集整理的关于javascript动态创建form表单的全部内容,更多相关javascript动态创建form表单内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(118)

评论列表共有 0 条评论

立即
投稿
返回
顶部