HighDots Forums  

Selezione testo in input

Javascript (Italian) Il linguaggio JavaScript (it.comp.lang.javascript)


Discuss Selezione testo in input in the Javascript (Italian) forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
buomao@buomao.com
 
Posts: n/a

Default Selezione testo in input - 06-19-2006 , 10:45 AM






E' possibile selezionare il testo in campo testo e dargli il fuoco?

--

questo articolo e` stato inviato via web dal servizio gratuito
http://www.newsland.it/news segnala gli abusi ad abuse (AT) newsland (DOT) it



Reply With Quote
  #2  
Old   
ZER0
 
Posts: n/a

Default Re: Selezione testo in input - 06-19-2006 , 10:52 AM






On Mon, 19 Jun 2006 16:45:12 +0200, buomao (AT) buomao (DOT) com wrote:

Quote:
E' possibile selezionare il testo in campo testo e dargli il fuoco?
Quando l'ho letta mi ha fatto un po' sorridere, perché ho "mentalmente"
saltato "il"..

Comunque.
Devi prima ottenere un riferimento al campo in questione. Questo lo puoi
fare in mille modi, se ha un'id puoi utilizzare il metodo
"document.getElementById":

var obj = document.getElementById("my-text-id");

se ha un name, e si trova in una form puoi utilizzare una sintassi di questo
tipo:

var obj = document.nomeForm.nomeText;

Oppure, se la form non ha un name (ad esempio, si tratta di codice XHTML
Strict /1.1 ):

var obj = document.forms[0].nomeText;

(supponendo che sia la prima form della pagina, altrimenti cambia l'indice
di conseguenza)

Una volta ottenuto il riferimento:

obj.select();
obj.focus();

--
~ "When you have eliminated the impossible, whatever remains,
however improbable, must be the truth." (S.H.)



Reply With Quote
  #3  
Old   
buomao@buomao.com
 
Posts: n/a

Default Re: Selezione testo in input - 06-19-2006 , 11:12 AM



ZER0 ha scritto:

Quote:
On Mon, 19 Jun 2006 16:45:12 +0200, buomao (AT) buomao (DOT) com wrote:

E' possibile selezionare il testo in campo testo e dargli il fuoco?

Quando l'ho letta mi ha fatto un po' sorridere, perché ho "mentalmente"
saltato "il"..
rileggendola ha fatto ridere anche me

proverò il resto. Grazie.

--

questo articolo e` stato inviato via web dal servizio gratuito
http://www.newsland.it/news segnala gli abusi ad abuse (AT) newsland (DOT) it




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.