“Obtener elemento haciendo clic” Código de respuesta

Obtener elemento haciendo clic

document.addEventListener('click', function(e) {
    e = e || window.event;
    var target = e.target || e.srcElement,
        text = target.textContent || target.innerText;   
}, false);
Colorful Crane

Obtener elemento haciendo clic

window.onclick = e => {
    console.log(e.target);  // to get the element
    console.log(e.target.tagName);  // to get the element tag name alone
} 
Colorful Crane

Obtener elemento haciendo clic

window.onclick = e => {
    console.log(e.target.innerText);
} 
Colorful Crane

Respuestas similares a “Obtener elemento haciendo clic”

Preguntas similares a “Obtener elemento haciendo clic”

Más respuestas relacionadas con “Obtener elemento haciendo clic” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código