Javascript-форум (https://javascript.ru/forum/)
-   Javascript под браузер (https://javascript.ru/forum/css-html/)
-   -   location.href в iframe (https://javascript.ru/forum/css-html/30995-location-href-v-iframe.html)

Replu 23.08.2012 00:51

location.href в iframe
 
Почему iframe не обновляется?

<html>
<body>
<iframe id="f1"></iframe>
<br>
<input type="button" value="Сайт" onclick="document.getElementById('f1').location.href='http://ipget.vov.ru';">
</body>
</html>


В чём проблема?

Deff 23.08.2012 00:55

Replu,
<html>
<body>
<iframe name="fram1" id="f1"></iframe>
<br>
<input type="button" value="Сайт" onclick="fram1.location.href='http://ipget.vov.ru';">
</body>
</html>


<html>
<body>
<iframe id="f1"></iframe>
<br>
<input type="button" value="Сайт" onclick="document.getElementById('f1').src='http://ipget.vov.ru';">
</body>
</html>

Aetae 23.08.2012 01:01

Цитата:

Сообщение от Replu (Сообщение 199797)
Почему iframe не обновляется?

<html>
<body>
<iframe id="f1"></iframe>
<br>
<input type="button" value="Сайт" onclick="document.getElementById('f1').location.href='http://ipget.vov.ru';">
</body>
</html>


В чём проблема?

Потому что document.getElementById('f1') ссылка на сам элемент frame, а не его содержание.
Надо либо
document.getElementById('f1').src='http://ipget.vov.ru'
либо
document.getElementById('f1').contentWindow.location.href='http://ipget.vov.ru'
либо как показал Deff.

Replu 23.08.2012 13:56

Спасибо


Часовой пояс GMT +3, время: 11:42.