schools insertar imagen example codigo html internet-explorer iframe cross-browser cross-domain

insertar - Incrustar texto/html en un objeto(en lugar de un iframe)



insertar iframe html (1)

Revise lo siguiente para obtener más información sobre cómo usar Object con IE: http://aplus.rs/web-dev/insert-html-page-into-another-html-page/

Se reduce a una diferencia en lo que IE espera frente a otros navegadores. Para IE, debe usar el atributo classid en lugar del atributo type. Por ejemplo (del sitio mencionado anteriormente):

<!--[if IE]> <object classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" data="some.html"> <p>backup content</p> </object> <![endif]--> <!--[if !IE]> <--> <object type="text/html" data="some.html"> <p>backup content</p> </object> <!--> <![endif]-->

Tenga en cuenta que el classid es específico para el tipo de contenido que está intentando server.

<iframe data="/localfile.html" type="text/html" width="200" height="200"></iframe> <iframe data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></iframe> <object data="/localfile.html" type="text/html" width="200" height="200"></object> <object data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></object>

Debajo de todos los navegadores excepto IE, las 4 pruebas funcionan. En IE 6 y 7, el último falla y muestra un marco vacío. ¿Hay alguna solución que permita a IE cargar el html externo en un objeto?