admin管理员组文章数量:1346036
I use OptimizePress (wordpress theme). It has great opt-in forms but unfortunately, there isn't a way to add a hidden form field through their UI. I do have the option to add custom scripts for each page.
How can I dynamically add a predefined hidden field to a form? The form does not have an ID. Something like the following may work but how can it be done when there is no form ID?
var input = document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute("name", "name_you_want");
input.setAttribute("value", "value_you_want");
//append to form element that you want .
document.getElementById("formname").appendChild(input);
This is the only form on the page.
Using some of the examples below, it doesn't work with type=hidden: .
But works with type=text: .
I use OptimizePress (wordpress theme). It has great opt-in forms but unfortunately, there isn't a way to add a hidden form field through their UI. I do have the option to add custom scripts for each page.
How can I dynamically add a predefined hidden field to a form? The form does not have an ID. Something like the following may work but how can it be done when there is no form ID?
var input = document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute("name", "name_you_want");
input.setAttribute("value", "value_you_want");
//append to form element that you want .
document.getElementById("formname").appendChild(input);
This is the only form on the page.
Using some of the examples below, it doesn't work with type=hidden: https://jsfiddle/eLazhj3d/1.
But works with type=text: https://jsfiddle/eLazhj3d/2.
Share Improve this question edited Apr 3, 2021 at 14:10 Syscall 19.8k10 gold badges43 silver badges58 bronze badges asked Nov 5, 2014 at 18:16 4thSpace4thSpace 44.4k101 gold badges306 silver badges494 bronze badges 2- Is there only one form in the page? – LcSalazar Commented Nov 5, 2014 at 18:19
- yes - just one form. – 4thSpace Commented Nov 5, 2014 at 18:20
6 Answers
Reset to default 4Here's a working fiddle (with a visible text field to show):
Using:
document.querySelector("form").appendChild(input);
https://jsfiddle/s55snxtn/
Code: html:
<form action=""><input type="text"/>
</form>
javascript:
var input = document.createElement("input");
input.setAttribute("type", "text");
input.setAttribute("name", "name_you_want");
input.setAttribute("value", "value_you_want");
//append to form element that you want .
document.querySelector("form").appendChild(input);
Using the document.querySelector()
function you can target any element using a css selector base, so in your case:
document.querySelector("form").appendChild(input);
Would get any element that is a form
tag.
Query Selector Docs
If you have only one form tag in the page, you can use
document.getElementsByTagName("form")[0];
It will return an array, just get the element in the first index
Using Jquery
$('<input>').attr({
type: 'hidden',
id: 'foo',
name: 'bar',
value: 'value'
}).appendTo('form');
Try something like:
document.forms[0].appendChild(input);
You can use the getElementsByTagName which returns an array.
If it's the first form on the page would be something like
document.getElementsByTagName('form')[0].appendChild(input);
本文标签: javascriptHow to dynamically add quothiddenquot field to formStack Overflow
版权声明:本文标题:javascript - How to dynamically add "hidden" field to form? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743821905a2544937.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论