Objetos

<< Click to Display Table of Contents >>

Navigation:  Passo-a-Passo >

Objetos

Previous pageReturn to chapter overviewNext page

Principais

 

window

objeto mais externo

location

endereço do site

history

histórico de url

document

página (conteudo)

navigator

browser

 

Exemplo simples

 

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

</head>

<body>

    <!-- clique no botao para trocar o titulo do documento -->

    <form id="forma1" method="post">

        <input id="Text1" type="text" name="txtTitle" />

        <input id="Button1" type="button" value="Trocar titulo" onclick="document.title = txtTitle.value" />

    </form>

</body>

    <!-- executa funcao em arquivo externo -->

    <script src="funcoes.js"></script>

</html>

 

funcoes.js

 

alert('externo');