Preguntas etiquetadas con internet-explorer

Un navegador web desarrollado por Microsoft e incluido con Windows. Comúnmente abreviado como "IE".




18
X-UA-Compatible está configurado en IE = edge, pero aún no detiene el modo de compatibilidad
Estoy bastante confundido Debería poder configurar <meta http-equiv="X-UA-Compatible" content="IE=edge" /> e IE8 e IE9 deberían renderizar la página usando el último motor de renderizado. Sin embargo, acabo de probarlo, y si el Modo de compatibilidad está activado en otra parte de nuestro sitio, permanecerá encendido para nuestra página , aunque …






11
La función event.preventDefault () no funciona en IE
El siguiente es mi código JavaScript (mootools): $('orderNowForm').addEvent('submit', function (event) { event.preventDefault(); allFilled = false; $$(".required").each(function (inp) { if (inp.getValue() != '') { allFilled = true; } }); if (!allFilled) { $$(".errormsg").setStyle('display', ''); return; } else { $$('.defaultText').each(function (input) { if (input.getValue() == input.getAttribute('title')) { input.setAttribute('value', ''); } }); } …





12
Aplicar estilo SOLO en IE
Aquí está mi bloque de CSS: .actual-form table { padding: 5px 0 15px 15px; margin: 0 0 30px 0; display: block; width: 100%; background: #f9f9f9; border-top: 1px solid #d0d0d0; border-bottom: 1px solid #d0d0d0; } Solo quiero que IE 7, 8 y 9 "vean" width: 100% ¿Cuál es la forma más …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.