Ejemplo rapido donde el bonoton de in iframe devuelve los datos a la pagina que la contiene con javascript
index. html
<html>
<body>
<iframe id="iframe1" name="iframe1" src="iframe1.html"></iframe> <input id="parentTextbox" type="text" value="red" />
<div contenteditable="true"
onfocus="if (this.placeholder=='Escribir Mensaje...') this.value='';" placeholder="Escribir Mensaje..." class="caja-texto" id="div_redactor">
</div>
</body>
</html>
pagina de iframe.html
<html>
<script>
function accessParent() {
var objectToGet = "div_redactor";
var parentObject = parent.document.getElementById(objectToGet);
var objectValue = parentObject.value;
parentObject.innerHTML = "green";
}
</script>
<body>
<input type="button" value="Access Parent" onclick="return accessParent()" />
</body>
</html>
No hay comentarios:
Publicar un comentario
Todos los comentarios son bien recibidos...