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

166
Views
¿Por qué la función "verificar contraseña" no hace nada al hacer clic?

Tengo un problema chicos. Como principiante, intento verificar la longitud de la contraseña y devolver el resultado, pero no funciona. después de hacer clic en el botón, no hace nada. ¿Qué estoy haciendo mal?

 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <script> function checkpassword(){ var pas=document.getElementByName(passcode).value; var x=pas.length; if(x<8){ document.getElementById(message).innerHTML="Error 404!"; } else{ document.getElementById(message).innerHTML="It's acceptable" } } </script> <body> <input type="password" name="passcode" placeholder="Enter password to check"> <input type="submit" value="submit" onclick="checkpassword()"> <p id="message"></p> </body> </html>
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

@'Felix Kling' y @'Daniel A. White han dado algunas pistas en los comentarios porque tendrá que pasar los nombres y las identificaciones como cadenas. Pero otro problema es que .getElementByName() no es una función. Puede probar esto (tenga en cuenta que he usado .getElementsByName (plural) y he hecho referencia al índice cero-ésimo:

 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <script> function checkpassword(){ var pas=document.getElementsByName('passcode')[0].value; var x=pas.length; if(x<8){ document.getElementById("message").innerHTML="Error 404!"; } else{ document.getElementById("message").innerHTML="It's acceptable" } } </script> <body> <input type="password" name="passcode" placeholder="Enter password to check"> <input type="submit" value="submit" onclick="checkpassword()"> <p id="message"></p> </body> </html>
about 4 years ago · Santiago Trujillo 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!