Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

183
Views
¿El botón de reinicio en el formulario no funciona para javascript?

Estoy tratando de restablecer cada entrada que se ha ingresado en este formulario cuando se hace clic en el botón "restablecer". A continuación se muestra mi código que intenté usar, el botón de reinicio no reiniciará nada. Gracias.

 <form id="todoForm"> <input type="text" id="todoInput" placeholder="Input new note.."> <input type="text" id="description" placeholder="Input description.."> <button type="button" id="button" onclick="todoList()">Submit</button> <button type="button" id="reset" onclick="resetForm()">Reset</button> </form> <ol id="todoList"> </ol> function todoList() { var item = document.getElementById("todoInput").value var text = document.createTextNode(item) var addItem = document.createElement("li") addItem.appendChild(text) document.getElementById("todoList").appendChild(addItem) var item = document.getElementById("description").value var text = document.createTextNode(item) var addItem = document.createElement("p") addItem.appendChild(text) document.getElementById("todoList").appendChild(addItem) } function resetForm() { document.getElementById(todoList).reset(); }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

No agregue un botón de reinicio.

Suponiendo que se trata de una aplicación de tareas pendientes, los usuarios pueden simplemente eliminar la tarea pendiente después de crearla. Agregar un botón de reinicio probablemente no proporcione mucho valor a los usuarios, sino que probablemente frustre a los que hacen clic en él por error.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!