Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

addRange

Sommario

Aggiunge un range alla selezione.

Sintassi

selezione.addRange(range)

Parametri

range
Un oggetto range che verrà aggiunto alla selezione.

Esempio

 /* seleziono tutti gli oggetti STRONG all'interno del documento HTML */
 var strongs = document.getElementsByTagName("strong");
 var s = window.getSelection();
 if(s.rangeCount > 0) s.removeAllRanges();
 for(var i = 0; i < strongs.length; i++) {
  var range = document.createRange();
  range.selectNode(strongs[i]);
  s.addRange(range);
 }
 

Tag del documento e collaboratori

 Hanno collaborato alla realizzazione di questa pagina: teoli, khalid32, Federico
 Ultima modifica di: teoli,