zhmm said:
where is the document ?
holaMundo.js
This document is how to write?
This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.
En la tarea anterior vimos como adicionarle JS a un archivo HTML dejando todo el código en un solo archivo. Esto es viable cuando el código JS es corto, pero cuando se vuelve más extenso es preferible tenerlo en un archivo aparte.
Vamos a realizar el mismo ejemplo de 'Hola JavaScript-Mundo' pero ahora separando el código JS en un archivo llamado holaMundo.js
El código de holaMundo.js sería:
document.write('Hola JavaScript-Mundo');
El código en tu archivo HTML sería:
<html> <body> <script type='text/javascript' src='holaMundo.js'></script> </body> </html>
Analicemos el ejemplo:
Para completar esta tarea:
Esto es lo básico que necesitas para empezar a introducir JS en tu sitio. En el siguiente reto vamos a ver algunas cosas interesantes que puedes hacer utillizando JS =D.
Te recomendamos:
where is the document ?
holaMundo.js
This document is how to write?
The file holamundo.js is just the code we use in the previous activity, just place it in a separate file and links it to the document.
This file is created only with notepad, just that we have to put the extension .js Also remove labels <script>, because they are in the code that links the document.
Sorry for my Englis, but translates a translator.