Download presentation
Presentation is loading. Please wait.
Published byAnnabel Angelina Matthews Modified over 9 years ago
1
JavaScript Tabriz university 2009
2
Its September 1995
3
Netscape Version 2.0 of browser is released.
4
Its first version to come with the scripting language.
5
the name of the language was first Mocha and then, when released, LiveScript
6
In December of that year Netscape made a marketing deal with Sun and renamed the language to
8
What is JavaScript?
9
JavaScript is a client-side scripting language. If the browser supports the language, JavaScript grants access to the current page and lets the script determine properties of the client, redirect the user to another page, access cookies, and do much more.
10
Microsoft included JavaScript support from Internet Explorer version 3 onward (mid-1996).
11
For legal reasons the language was called JScript.
12
Microsoft started to include additional, IE-only features to JScript.
13
In 1997, the standard ECMAScript (ECMA-262) was published; JavaScript is therefore the first implementation of that standard. ECMAScript became an ISO norm in 1998. ECMA: European Computer Manufacturers Association
14
Around 1997 or 1998, the browser war between Netscape and Microsoft reached a climax, with both vendors adding new, incompatible functionality to version 5 of their browsers.
15
Vs
16
Netscape scrapped the idea of releasing browser version 5 and decided to start all over with Netscape 6, which helped Internet Explorer to expand its market share to over 90%.
17
It took the then-founded Mozilla project several years to come to life again. The very popular Firefox browser was based on Mozilla and started to take market share away from Microsoft.
18
Other browsers, by the way, support JavaScript as well. Differences are subtle, but still can be extremely annoying when one is developing a browser-agnostic web application.
19
Internet Explorer
20
Mozilla Firefox Epiphany Camino Galeon
21
Opera
22
Konqueror
23
Safari
24
Java Vs JavaScript
25
Java 1991 Sun Microsystems. Called Oak. 1995 Called Java.
26
Java A simple, secure, portable, object oriented, robust, multi-threaded, architecture-neutral, interpreted, high performance, distributed and dynamic programming language.
27
Java Vs JavaScript JavaScript was developed by Netscape Java was developed by Sun
28
Java Vs JavaScript JavaScript – Cannot draw, multi-thread, network or do I/O Java – Cannot interact with Browser or control content
29
Java Vs JavaScript JavaScript – Cannot draw, multi-thread, network or do I/O Java – Cannot interact with Browser or control content
30
JavaScript We’ll call collections of JavaScript code scripts, not programs JavaScript and Java are only related through syntax JavaScript’s support for objects is very different
31
Object Orientation and JavaScript JavaScript is NOT an object oriented programming language: – Does not support class based inheritance – Cannot support polymorphism
32
Object Orientation and JavaScript JavaScript objects are collections of properties, which are like the members of classes in Java and C++
33
What is it used for today? Handling User Interaction: – Checking for accuracy and appropriateness of data entry from forms – Doing small calculations/manipulations of forms input data – Save data as cookie so it is there upon visiting the page Reduce web server processing load Reduce delay when users’ input is wrong
34
Generating Dynamic HTML documents Controlling applets and calling Java from JavaScript Accessing JavaScript from Java Allow further capabilities together with other technologies: – DHTML ( Dynamic HTML) – AJAX (Asynchronous JavaScript and XML)
35
Language Basics
36
JavaScript in HTML directly, as in JavaScript script – Or indirectly, as a file specified in the src attribute of, as in <script type = "text/javaScript" src = "myScript.js">
37
Example <!-- // this is a comment document.write(“Hello World!!”) ; alert(“Done!”) // -->
38
Syntax Variables Functions Objects … Syntax based on C/C++/Java Case Sensitive
39
I need JS code WRITE STEAL
40
References: JavaScript™ Phrasebook: Essential Code and Commands – By Christian Wenz – Sams
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.