Jaki jest najprostszy sposób, aby dynamicznie utworzyć ukryte pole formularza wejściowego za pomocą jQuery?
Jaki jest najprostszy sposób, aby dynamicznie utworzyć ukryte pole formularza wejściowego za pomocą jQuery?
Odpowiedzi:
$('<input>').attr('type','hidden').appendTo('form');
Aby odpowiedzieć na drugie pytanie:
$('<input>').attr({
type: 'hidden',
id: 'foo',
name: 'bar'
}).appendTo('form');
.prop
funkcją w nowszej wersji API?
.prop
nie jest „nowy .attr
”, jak się wydaje wielu osobom. Nadal powinieneś używać .attr
do ustawiania atrybutów.
$('#myformelement').append('<input type="hidden" name="myfieldname" value="myvalue" />');
To samo co David, ale bez attr ()
$('<input>', {
type: 'hidden',
id: 'foo',
name: 'foo',
value: 'bar'
}).appendTo('form');
jeśli chcesz dodać więcej atrybutów, po prostu zrób tak:
$('<input>').attr('type','hidden').attr('name','foo[]').attr('value','bar').appendTo('form');
Lub
$('<input>').attr({
type: 'hidden',
id: 'foo',
name: 'foo[]',
value: 'bar'
}).appendTo('form');
Unexpected identifier
.
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');
'name-as-seen-at-the-server'
?
Działający JSFIDDLE
Jeśli twój formularz jest podobny
<form action="" method="get" id="hidden-element-test">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
<br><br>
<button id="add-input">Add hidden input</button>
<button id="add-textarea">Add hidden textarea</button>
Możesz dodać ukryte dane wejściowe i obszar tekstowy w taki sposób
$(document).ready(function(){
$("#add-input").on('click', function(){
$('#hidden-element-test').prepend('<input type="hidden" name="ipaddress" value="192.168.1.201" />');
alert('Hideen Input Added.');
});
$("#add-textarea").on('click', function(){
$('#hidden-element-test').prepend('<textarea name="instructions" style="display:none;">this is a test textarea</textarea>');
alert('Hideen Textarea Added.');
});
});
Sprawdź działający jsfiddle tutaj
$('<input type="hidden">').foo(...)
jako obejścia.