Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1. Accesul informațiilor din <input>-urile unui formular se pot lua prin atributul value direct din element. Setând un ID pentru respectivul element astfel:
- <input type="test" id="name">
- Conținutul se poate prelua astfel:
- var user_name = document.getElementById("name").value;
- 2. Se folosește funcția anterioară și
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement