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

Resumen

Añade un objeto de rango a la selección.

Sintaxis

sel.addRange(
range)

Parámetros

range
Un objeto range que será añadido a la selección.

Ejemplos

 /* Seleccionar todos los elementos en NEGRITA en un 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);
 }

 

 

Etiquetas y colaboradores del documento

Etiquetas: 
 Colaboradores en esta página: fscholz, Mgjbot, DR
 Última actualización por: fscholz,