input-felder markieren
eUncle
- html
0 rob
Hallo,
wie mache ich das am besten, dass, wenn man auf ein Input-Feld (text) klickt, sofort (ohne strg+a) der komplette Inhalt (value) markiert wird?
Danke :)
Hi!
wie mache ich das am besten, dass, wenn man auf ein Input-Feld (text) klickt, sofort (ohne strg+a) der komplette Inhalt (value) markiert wird?
onclick="formularname.eingabefeld.select();"
Schöner Gruß,
rob
Hallo rob.
wie mache ich das am besten, dass, wenn man auf ein Input-Feld (text) klickt, sofort (ohne strg+a) der komplette Inhalt (value) markiert wird?
onclick="formularname.eingabefeld.select();"
Kürzer und weniger fehlerträchtig:
<input type="text" onfocus="[code lang=javascript]if (this.select) this.select();
" />[/code]
Einen schönen Mittwoch noch.
Gruß, Mathias