Download presentation
Presentation is loading. Please wait.
Published byBlanche Hensley Modified over 9 years ago
1
آموزش طراحی وب سایت جلسه یازدهم – جاوا اسکریپت 2 تدریس طراحی وب برای اطلاعات بیشتر تماس بگیرید تاو شماره تماس: 09125773990 09371410986 پست الکترونیک : TargetLearning@gmail.com
2
Web Design Training Java Scripts #2 Part 11 Author :Babak Tavatav
3
JavaScript For Loop for (var=startvalue;var<=endvalue;var=var+incre ment) { code to be executed }
4
for (i = 0; i <= 5; i++) { document.write("The number is " + i); document.write(" "); } Explanation: This for loop starts with i=0. As long as i is less than, or equal to 5, the loop will continue to run. i will increase by 1 each time the loop runs.
5
The while Loop The while loop loops through a block of code while a specified condition is true. Syntax: while (var<=endvalue) { code to be executed } Note: The <= could be any comparing operator.
6
i=0; while (i<=5) { document.write("The number is " + i); document.write(" "); i++; } Explanation: i is equal to 0. While i is less than, or equal to, 5, the loop will continue to run. i will increase by 1 each time the loop runs.
7
The do...while Loop The do...while loop is a variant of the while loop. This loop will execute the block of code ONCE, and then it will repeat the loop as long as the specified condition is true. Syntax do { code to be executed } while (var<=endvalue);
8
i = 0; do { document.write("The number is " + i); document.write(" "); i++; } while (i <= 5) Explanation: i equal to 0. The loop will run i will increase by 1 each time the loop runs. While i is less than, or equal to, 5, the loop will continue to run.
9
JavaScript Break and Continue Statements
10
var i=0; for (i=0;i<=10;i++) { if (i==3) { break; } document.write("The number is " + i); document.write(" "); } Explanation: The loop will break when i=3.
11
The continue Statement The continue statement will break the current loop and continue with the next value.
12
var i=0; for (i=0;i<=10;i++) { if (i==3) { continue; } document.write("The number is " + i); document.write(" "); } Explanation: The loop will break the current loop and continue with the next value when i=3.
13
exercise JavaScript For...In Statement
14
Events By using JavaScript, we have the ability to create dynamic web pages. Events are actions that can be detected by JavaScript. Every element on a web page has certain events which can trigger a JavaScript. For example, we can use the onClick event of a button element to indicate that a function will run when a user clicks on the button. We define the events in the HTML tags. Examples of events: A mouse click A web page or an image loading Mousing over a hot spot on the web page Selecting an input field in an HTML form Submitting an HTML form A keystroke
15
The try...catch Statement The try...catch statement allows you to test a block of code for errors. The try block contains the code to be run, and the catch block contains the code to be executed if an error occurs. Syntax try { //Run some code here } catch(err) { //Handle errors here }
16
var txt=""; function message() { try { adddlert("Welcome guest!"); } catch(err) { txt="There was an error on this page.\n\n"; txt+="Error description: " + err.description + "\n\n"; txt+="Click OK to continue.\n\n"; alert(txt); }
17
var txt=""; function message() { try { adddlert("Welcome guest!"); } catch(err) { txt="There was an error on this page.\n\n"; txt+="Click OK to continue viewing this page,\n"; txt+="or Cancel to return to the home page.\n\n"; if(!confirm(txt)) { document.location.href="http://www.sabadekala.com/"; } } }
18
JavaScript Special Characters CodeOutputs \'single quote \"double quote \&ersand \\backslash \nnew line \rcarriage return \ttab \bbackspace \fform feed
19
JavaScript Objects
20
Object Oriented Programming Properties Methods
21
var txt="Hello World!"; document.write(txt.length);
22
var str="Hello world!"; document.write(str.toUpperCase());
23
The END
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.