Как передать данные в iframe?
index.htm
...................
<html>
<body>
<input type='button'value='ok'onclick="document.getElemen tById('fr').contentWindow.document.getElementById( 'short_story').value = 123456">
<input type='button'value='ok2'onclick="document.getEleme ntById('fr').contentWindow.document.forms.entryfor m.getElementById('full_story').value = 123456789">
<input type='button'value='ok3'onclick="document.getEleme ntById('fr').contentWindow.document.getElementByNa me('title').value = 123456789">
<iframe src='addnews.html' id='fr' width=800 height=600></ifarme>
</body>
</html>
addnews.html
................
<html>
<body>
.........
<form method=post name="entryform" id="entryform"
.....................
<input type="text" name="title" value="">
...............
<textarea name="short_story" id="short_story"></textarea>
...............
<textarea name="full_story" id="full_story"></textarea></form>
</body>
</html>
.............................................
Ни одна из 3 кнопок не работает.
Где я ошибся?
Последний раз редактировалось Allex, 26.06.2009 в 23:27.
|