Capítulo 12
Window - Propriedade frames
JavaScript
<script type="text/javascript">
function alterarIframe () {
frames[0].location="http://w3.org";
}
function recarregar() {
frames[0].location="http://google.com";
}
<script>
HTML
<iframe src="http://google.com.br/"></iframe>
<iframe src="http://maujor.com/"></iframe>
<iframe src="http://novateceditora.com.br/"></iframe><br />
<button type="button" onclick="alterarIframe()">Alterar iframes</button>
<button type="button" onclick="recarregar()">Reset</button>
Arquivos exemplo: « anterior | próximo »