17 - Borrar un atributo de un elemento (removeAttribute)
Problema:
Implementar una página que muestre dos hipervínculos, luego mediante dos botones poder crear o eliminar el atributo href de las respectivas marcas.
pagina.html
estilos.css
funciones.js
Ejecución de la página
Prueba
Google.
Yahoo.
function eliminarAtributo() { let puntero = document.getElementById('enlace1') puntero.removeAttribute('href') puntero = document.getElementById('enlace2') puntero.removeAttribute('href') } function inicializarAtributo() { let puntero = document.getElementById('enlace1') puntero.setAttribute('href', 'https://www.google.com.ar') puntero = document.getElementById('enlace2') puntero.setAttribute('href', 'https://www.yahoo.com.ar') }
No tiene disponible el navegador la capacidad de iframe
Retornar