Dado que no puedo usar div dentro de formularios, me pregunto cómo puedo agregar un nuevo campo en el medio del formulario (y no puedo usar .append()
aquí) sin volver a cargar la página o reescribir el formulario ? (Usando jQuery)Añadiendo dinámicamente campo de formulario HTML usando jQuery
EDIT: este es el HTML:
<form id="form-0" name="0">
<b>what is bla?</b><br>
<input type="radio" name="answerN" value="0"> aaa <br>
<input type="radio" name="answerN" value="1"> bbb <br>
<input type="radio" name="answerN" value="2"> ccc <br>
<input type="radio" name="answerN" value="3"> ddd <br>
//This is where I want to dynamically add the new radio or text line
<input type="submit" value="Submit your answer">
//but HERE is where .append() will put it!
</form>
Su pregunta no tiene demasiado sentido. ¿Qué has probado ya? –
Traté de olvidar el hijo anterior al formulario y uso anexarlo pero no funcionó – ilyo
¿Qué te hace pensar que no puedes usar elementos 'div' dentro de los elementos' form'? – zzzzBov