Presentation is loading. Please wait.

Presentation is loading. Please wait.

JavaScript Lesson 1 TBE 540. Prerequisites  Before beginning this lesson, the learner must be able to… Create a basic web page using a text editor and/or.

Similar presentations


Presentation on theme: "JavaScript Lesson 1 TBE 540. Prerequisites  Before beginning this lesson, the learner must be able to… Create a basic web page using a text editor and/or."— Presentation transcript:

1 JavaScript Lesson 1 TBE 540

2 Prerequisites  Before beginning this lesson, the learner must be able to… Create a basic web page using a text editor and/or a web page editor. Edit the existing HTML code of a web page.

3 Objectives  The learner will be able to successfully add JavaScript code to a web page.  The JavaScript will produce a useful effect and enhance the page’s value to the user.

4 What is JavaScript?  JavaScript is a programming language. This means that the instructions you write in JavaScript will make something happen.  You can include it easily within the HTML code of a web page to customize the page.

5 What is JavaScript? JavaScript is related to Java and C++, but it does not need to be “compiled” (translated to binary) before it is used. JavaScript is not the same as Java.

6 What is JavaScript? JavaScript code is “interpreted” - the browser executes each line of code as it is encountered. JavaScript is free and many existing samples are available. (see TBE 540 HTML page for links)

7 What can you do with JavaScript?  Visit the links from Lesson 8 on the TBE 540 HTML page to see what can be done using JavaScript. ( http://www.csudh.edu/fisher/tbe54 0/lesson8.html) http://www.csudh.edu/fisher/tbe54 0/lesson8.html

8  Would any of these JavaScript samples be appropriate for your web project?  Later you will learn how to add JavaScript code to your pages. What can you do with JavaScript?

9 How do you add JavaScript to a web page?  If you are going to add JavaScript, it is necessary to be able to edit the HTML code of a web.  If you are using a web editor and are unsure of how to edit HTML code, check HELP in your editor.

10 How do you add JavaScript to a web page?  At first (maybe always) you will be simply pasting in JavaScript code copied from other sources.  Sometimes you will customize the code.  You can also type the code into your HTML.

11 How do you add JavaScript to a web page?  When you copy or type the code, notice where it should go.  JavaScript is most commonly placed in the section of a page, but there are often parts that must go elsewhere.

12 JavaScript - Sample  Here is an explanation of a simple use of JavaScript - asking a question and displaying an answer.  You will try this in the Fun with Buttons! exercise.

13  In this case, there will be a JavaScript function (small program) called getName() placed in the HEAD section of the HTML.  It will ask for a name and print Hi and the name. JavaScript - Sample

14  Here’s what the function looks like (explanations follow): var stName="XX" function getName() { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

15  The script tags are needed to identify this code as JavaScript. var stName="XX" function getName() { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

16  The line beginning var sets up a variable called stName with a beginning value of XX (just to fill it up). var stName="XX" function getName () { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

17  function getName() defines the name of the function (notice the two parentheses). var stName="XX" function getName() { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

18  The braces { } show where the function begins and ends. var stName="XX" function getName() { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

19  The line beginning stName= displays the message Please enter your name and waits for an entry, which will become the value of stName. var stName="XX" function getName() { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

20  The line beginning alert displays Hi, and the value of the variable stName. var stName="XX" function getName( ) { stName=prompt("Please enter your name"," ") alert("Hi, " + stName) } JavaScript - Sample

21  Something has to start the getName() function.  In the Fun with Buttons! exercise, it will be clicking on a graphic or a “form” button (more about forms in a later lesson).

22 JavaScript - Sample  To start a function, its name will be somewhere in the HTML: getName()  You will see this code in an IMG tag: onclick=“getName()”  When the graphic is clicked, the function starts.

23 JavaScript - Sample  You will also see this code between and tags :  FORMs are used to make buttons and input boxes appear on a web page.

24 Self Check - JS Lesson 1  True or false - JavaScript and Java are exactly the same thing.

25 Self Check - JS Lesson 1  True or false - JavaScript and Java are exactly the same thing.  False - Java must be “complied” (translated to binary) before running, while JavaScript runs automatically every time the web page is opened. Java is also much more powerful than JavaScript.

26 Self Check - JS Lesson 1  JavaScript is most often found in the _____ section of the HTML code for a web page.

27 Self Check - JS Lesson 1  JavaScript is most often found in the _____ section of the HTML code for a web page. {may be here, too}

28 Self Check - JS Lesson 1  Which of the following is the correct way to begin JavaScript?

29 Self Check - JS Lesson 1  Which of the following is the correct way to begin JavaScript? * * {upper and lower case must be exact}

30 Self Check - JS Lesson 1  Suppose you created a function called HAPPY(). What command would activate the function?  happy()  HAPPY  HAPPY()

31 Self Check - JS Lesson 1  Suppose you created a function called HAPPY(). What command would activate the function?  happy()  HAPPY  HAPPY() The name must be exactly the same, including upper and lower case. The parentheses must be included.

32 Self Check - JS Lesson 1  Which of the following commands waits for input? prompt alert

33 Self Check - JS Lesson 1  Which of the following commands waits for input? prompt {waits for input and Return/Enter} alert {displays message only}

34 Try some!  Complete the Fun with Buttons! exercise.  Go find some interesting JavaScript code and try it out.  The samples on the TBE 540 HTML page are a good place to start.


Download ppt "JavaScript Lesson 1 TBE 540. Prerequisites  Before beginning this lesson, the learner must be able to… Create a basic web page using a text editor and/or."

Similar presentations


Ads by Google