Advertisement
artur99

Untitled

Feb 5th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. 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:
  2. <input type="test" id="name">
  3. Conținutul se poate prelua astfel:
  4. var user_name = document.getElementById("name").value;
  5.  
  6. 2. Se folosește funcția anterioară și
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement