30/09/2004, 11:29
|
(Desactivado) | | Fecha de Ingreso: noviembre-2002 Ubicación: Ciudad Autónoma de Buenos Aires
Mensajes: 2.367
Antigüedad: 22 años Puntos: 317 | |
Hola todos :
tal vez con on objeto
Código:
<HTML>
<HEAD>
<TITLE>OBJECT × IFRAME</TITLE>
<script language= "JavaScript">
function ancho(){
obj=document.getElementById("objeto");
obj.style.width="50%";
alert(obj.width+"\r\nwidth");
alert(obj.style.width+"\r\nstyle.width");
}
</script>
</HEAD>
<BODY>
<h2>Muestra un documento dentro de un <tt>object</tt> a modo de <tt>iframe</tt> .</h2>
<object id="objeto" data="www.forosdelweb.com" height=100 width=75% type="text/html">
</object>
<input type="button" value="Estilo ancho : 50%.
Ver Ancho." onclick="ancho()">
<p>
<fieldset style='padding:0 10px; border-color:black'><legend> EJEMPLOS</legend>
<pre><OBJECT ID="UN_OBJETO" HEIGHT=100 WIDTH=200 CLASSID="clsid: ... ">
</PARAM NAME="width" VALUE="400">
</OBJECT>
<hr>
<object id="UN_OBJETO" data="UNA_PAGINA.htm"
style="height:100px; width:200px" type="text/html">
</object>
<HR>
<object id="UN_OBJETO" data="UNA_PAGINA.htm"
height=100 width=200>
</object> </pre>
</fieldset>
</BODY>
</HTML>
saludos
furoya |