Wie kann man am einfachsten eine versteckte Datei dynamisch erstellen? Eingabe Formularfeld mit jQuery?
Antworten
Zu viele Anzeigen?
Mark Bell
Punkte
27880
Sergey Onishchenko
Punkte
5667
Slipstream
Punkte
11219
Saurabh Chandra Patel
Punkte
11475
function addHidden(theForm, key, value) {
// Create a hidden input element, and append it to the form:
var input = document.createElement('input');
input.type = 'hidden';
input.name = key; //name-as-seen-at-the-server
input.value = value;
theForm.appendChild(input);
}
// Form reference:
var theForm = document.forms['detParameterForm'];
// Add data:
addHidden(theForm, 'key-one', 'value');
- See previous answers
- Weitere Antworten anzeigen