html5-img
1 / 76

JavaScript

JavaScript. JavaScript Introduction. JavaScript is the world's most popular programming language. It is the language for HTML and the web, for servers, PCs, laptops, tablets, smart phones, and more. JavaScript is a Scripting Language. A scripting language is a lightweight programming language.

job
Download Presentation

JavaScript

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. JavaScript

  2. JavaScript Introduction • JavaScript is the world's most popular programming language. It is the language for HTML and the web, for servers, PCs, laptops, tablets, smart phones, and more.

  3. JavaScript is a Scripting Language • A scripting language is a lightweight programming language. • JavaScript is programming code that can be inserted into HTML pages. • JavaScript inserted into HTML pages, can be executed by all modern web browsers. • JavaScript is easy to learn.

  4. What You Will Learn • Below is a taste of what you will learn in this tutorial.

  5. JavaScript: Writing Into HTML Output • document.write("<h1>This is a heading</h1>");document.write("<p>This is a paragraph</p>");

  6. JavaScript: Reacting to Events • <button type="button" onclick="alert('Welcome!')">Click Me!</button>

  7. JavaScript: Changing HTML Content • Using JavaScript to manipulate the content of HTML elements is a very powerful functionality. • x=document.getElementById("demo")  //Find the elementx.innerHTML="Hello JavaScript";    //Change the content

  8. JavaScript: Changing HTML Images • <script> • function changeImage() • { • element=document.getElementById('myimage') • if (element.src.match("bulbon")) • { • element.src="pic_bulboff.gif"; • } • else • { • element.src="pic_bulbon.gif"; • } • } • </script>

  9. JavaScript: Changing HTML Styles • Changing the style of an HTML element, is a variant of changing an HTML attribute. • x=document.getElementById("demo")  //Find the elementx.style.color="#ff0000";           //Change the style

  10. JavaScript How To

  11. JavaScript How To • JavaScripts in HTML must be inserted between <script> and </script> tags. • JavaScripts can be put in the <body> and in the <head> section of an HTML page.

  12. The <script> Tag • To insert a JavaScript into an HTML page, use the <script> tag. • The <script> and </script> tells where the JavaScript starts and ends. • The lines between the <script> and </script> contain the JavaScript: • <script>alert("My First JavaScript");</script>

  13. The <script> Tag • You can place an unlimited number of scripts in an HTML document. • Scripts can be in the <body> or in the <head> section of HTML, and/or in both.

  14. External JavaScripts • Scripts can also be placed in external files. External files often contain code to be used by several different web pages. • External JavaScript files have the file extension .js. • To use an external script, point to the .js file in the "src" attribute of the <script> tag.

  15. External JavaScripts • <!DOCTYPE html><html><body><script src="myScript.js"></script></body></html>

  16. JavaScript Output

  17. Manipulating HTML Elements • To access an HTML element from JavaScript, you can use the document.getElementById(id) method. • Use the "id" attribute to identify the HTML element:

  18. Manipulating HTML Elements • <!DOCTYPE html><html><body><h1>My First Web Page</h1><p id="demo">My First Paragraph</p><script>document.getElementById("demo").innerHTML="My First JavaScript";</script></body></html>

  19. Manipulating HTML Elements • The JavaScript is executed by the web browser. In this case, the browser will access the HTML element with id="demo", and replace its content (innerHTML) with "My First JavaScript".

  20. Writing to The Document Output • The example below writes a <p> element directly into the HTML document output:

  21. Writing to The Document Output • <!DOCTYPE html><html><body><h1>My First Web Page</h1><script>document.write("<p>My First JavaScript</p>");</script></body></html>

  22. Warning • Use document.write() only to write directly into the document output. • If you execute document.write after the document has finished loading, the entire HTML page will be overwritten.

  23. JavaScript in Windows 8 • Microsoft supports JavaScript for creating Windows 8 apps.JavaScript is definitely the future for both the Internet and Windows.

  24. JavaScript Statements

  25. JavaScript Statements • JavaScript statements are "commands" to the browser. • The purpose of the statements is to tell the browser what to do. • This JavaScript statement tells the browser to write "Hello Dolly" inside an HTML element with id="demo":

  26. JavaScript Statements • document.getElementById("demo").innerHTML="Hello Dolly";

  27. Semicolon ; • Semicolon separates JavaScript statements. • Normally you add a semicolon at the end of each executable statement. • Using semicolons also makes it possible to write many statements on one line. • Ending statements with semicolon is optional in JavaScript.

  28. JavaScript Code • JavaScript code (or just JavaScript) is a sequence of JavaScript statements. • Each statement is executed by the browser in the sequence they are written. • This example will manipulate two HTML elements:

  29. JavaScript Code • document.getElementById("demo").innerHTML="Hello Dolly";document.getElementById("myDIV").innerHTML="How are you?";

  30. JavaScript Code Blocks • JavaScript statements can be grouped together in blocks. • Blocks start with a left curly bracket, and end with a right curly bracket. • function myFunction(){document.getElementById("demo").innerHTML="Hello Dolly";document.getElementById("myDIV").innerHTML="How are you?";}

  31. JavaScript is Case Sensitive • A function getElementById is not the same as getElementbyID. • A variable named myVariable is not the same as MyVariable.

  32. White Space • JavaScript ignores extra spaces. You can add white space to your script to make it more readable. The following lines are equivalent: • var person="Hege";var person = "Hege";

  33. Break up a Code Line • You can break up a code line within a text string with a backslash. The example below will be displayed properly: • document.write("Hello \World!"); • However, you cannot break up a code line like this: • document.write \("Hello World!");

  34. JavaScript Variablesand Data Types

  35. JavaScript Variables • JavaScript variables are "containers" for storing information: • var x=5;var y=6;var z=x+y;

  36. JavaScript Variables • JavaScript variables can be used to hold values (x=5) or expressions (z=x+y). • Variable can have short names (like x and y) or more descriptive names (age, sum, totalvolume). • Variable names must begin with a letter • Variable names can also begin with $ and _ (but we will not use it) • Variable names are case sensitive (y and Y are different variables)

  37. JavaScript Data Types • JavaScript variables can also hold other types of data, like text values (person="John Doe"). • In JavaScript a text like "John Doe" is called a string.

  38. JavaScript Data Types • When you assign a text value to a variable, put double or single quotes around the value. • When you assign a numeric value to a variable, do not put quotes around the value. If you put quotes around a numeric value, it will be treated as text.

  39. Declaring (Creating) JavaScript Variables • varcarname; • carname="Volvo"; • varcarname="Volvo"; <p id="demo"></p>varcarname="Volvo";document.getElementById("demo").innerHTML=carname;

  40. Note • It's a good programming practice to declare all the variables you will need, in one place, at the beginning of your code.

  41. One Statement, Many Variables • varlastname="Doe", age=30, job="carpenter"; • varlastname="Doe",age=30,job="carpenter";

  42. JavaScript Arithmetic • As with algebra, you can do arithmetic with JavaScript variables, using operators like = and +: • y=5;x=y+2;

  43. JavaScript Has Dynamic Types • JavaScript has dynamic types. This means that the same variable can be used as different types: • var x;     // Now x is undefinedvar x = 5;   // Now x is a Numbervar x = "John"; // Now x is a String

  44. JavaScript Strings • A string is a variable which stores a series of characters like "John Doe". • A string can be any text inside quotes. You can use single or double quotes: • var carname="Volvo XC60";var carname='Volvo XC60';

  45. JavaScript Numbers • JavaScript has only one type of numbers. Numbers can be written with, or without decimals: • var x1=34.00;      //Written with decimalsvar x2=34;     //Written without decimals

  46. JavaScript Booleans • var x=true;var y=false;

  47. JavaScript Arrays • var cars=new Array();cars[0]="Saab";cars[1]="Volvo";cars[2]="BMW"; • var cars=new Array("Saab","Volvo","BMW"); • var cars=["Saab","Volvo","BMW"];

  48. JavaScript Objects • An object is delimited by curly braces. Inside the braces the object's properties are defined as name and value pairs (name : value). The properties are separated by commas: • var person={firstname:"John", lastname:"Doe", id:5566};

  49. JavaScript Objects • The object (person) in the example above has 3 properties: firstname, lastname, and id. • Spaces and line breaks are not important. Your declaration can span multiple lines: • var person={firstname : "John",lastname  : "Doe",id        :  5566};

  50. JavaScript Objects • You can address the object properties in two ways: • name=person.lastname; • name=person["lastname"];

More Related