Javascript: History
Javascript: History
History
JavaScript was designed to 'plug a gap' in the techniques available for creating web-pages.
HTML is relatively easy to learn, but it is static. It allows the use of links to load new pages,
images, sounds, etc., but it provides very little support for any other type of interactivity.
To create dynamic material it was necessary to use either:
CGI (Common Gateway Interface) programs
o Can be used to provide a wide range of interactive features, but...
o Run on the server, i.e.:
A user-action causes a request to be sent over the internet from the client
machine to the server.
The server runs a CGI program that generates a new page, based on the
information supplied by the client.
The new page is sent back to the client machine and is loaded in place of
the previous page.
Thus every change requires communication back and forth across the internet.
o Written in languages such as Perl, which are relatively difficult to learn.
Java applets
o Run on the client, so there is no need to send information back and forth over the
internet for every change, but...
o Written in Java, which is relatively difficult to learn.
In this course we will be using JavaScript/JScript to program browsers. However, there are
several other languages we could use should we wish to. Therefore, we shall try to distinguish
clearly between those aspects of internet programming which are specific to JavaScript/JScript
and those which remain the same regardles of which language we choose to use.
We'll start by looking at some of the basic features of the JavaScript language.
(string)
(string)
(numeric)
(Boolean)
When a new variable is created (or declared) its name must be preceded by the word var
The type of the variable is determined by the way it is declared:
o if it is enclosed within quotes, it's a string
o if it is set to true or false (without quotes) it's a boolean
o if it is a number (without quotes) it's numeric
We refer to the equals sign as the assignment operator because we use it to assign values
to variables;
Variable names must begin with a letter or an underscore
Variable names must not include spaces
JavaScript is case-sensitive
Reserved words (i.e., words which indicate an action or operation in JavaScript) cannot
be used as variable names.
Operators
Operators are a type of command. They perform operations on variables and/or literals and
produce a result.
JavaScript understands the following operators:
+
*
/
%
Addition
Subtraction
Multiplication
Division
Modulus
(If you're not sure what a modulus operator does, here are some notes and an example)
These are known as binary operators because they require two values as input, i.e.:
4+3
7/2
15 % 4
In addition, JavaScript understands the following operators:
++
Increment
Increase value by 1
--
Decrement
Decrease value by 1
Negation
These are known as unary operators because they require only one value as input, i.e.:
4++
7--5
increase 4 by 1 so it becomes 5
decrease 7 by 1 so it becomes 6
negate 5 so it becomes -5
var totalStudents = 60
var examPasses = 56
var resits = totalStudents - examPasses
Note that by carrying out this operation we have created a new variable - resits.
There is no need to declare this variable in advance.
It will be a numeric value because it has been created as a result of an operation performed on
two numeric values.
We can also combine these operators (and the assignment operator, =) in certain ways.
For example:
total += price
You may find the descriptions helpful when trying to remember what each operator does. For
example:
5*=3
can be thought of as meaning:
5 becomes equal to itself multiplied by 3
Part 4
Methods
Events
Internet browsers contain many objects. In the last few years the object structure of internet
browsers has become standardised, making programming easier. Prior to this, browsers from
different manufacturers had different object structures. Unfortunately, many such browsers are
still in use.
The objects are arranged into a hierarchy as shown below:
The Document Object Model. Objects shown in green are common to both
Netscape Navigator and Internet Explorer; objects shown in yellow are
found only in Internet Explorer while objects shown in blue are found only
in Netscape Navigator.
is the fundamental object in the browser. It represents the browser window in which the
document appears
Window
example:
location
alert(window.location);
length
The number of frames (if any) into which the current window is
divided. For example:
alert(window.length);
parent
will place a string representing the parent window into the variable
parentWindow, then use it to report the number of frames (if any) in
the parent window.
top
will place a string representing the top-level window into the variable
topWindow, then use it to report the number of frames (if any) in the
top-level window.
top behaves in a very similar way to parent. Where there are only two
levels of windows, top and parent will both indicate the same window.
However, if there are more than two levels of windows, parent will
indicate the parent of the current window, which may vary depending
upon which window the code is in. However, top will always indicate
the very top-level window.
alert("Hi, there!");
confirm()
prompt()
Displays a message, a box into which the user can type text, an 'OK'
button, and a 'Cancel' button. Returns a text string. The syntax is:
prompt(message_string, default_response_string)
For example:
will display a dialog box containing the message "Select File" along
with an 'OK' button, a 'Cancel' button, and an area into which the user
can type. This area will contain the string "file.txt", but this can be
overwritten with a new name. If the user clicks on 'OK' the variable
fileName will contain the string "file.txt" or whatever the user entered
in its place, and this will be reported using an alert dialog box.
open()
For example:
will open a new window 100 pixels high by 200 pixels wide. An
HTML document called '05_JS4nw.html' will be loaded into this
window.
Note that the variable newWindow is not preceded by the word var.
This is because newWindow is a global variable which was declared
at the start of the script. The reason for this is explained below.
close()
window_name.close()
For example:
newWindow.close()
<body onLoad="displayWelcome()">
onUnload()
<body onUnload="displayFarewell()">
The Document object represents the HTML document displayed in a browser window. It has
properties, methods and events that allow the programmer to change the way the document is
displayed in response to user actions or other events.
Document properties include:
bgColor
document.bgColor = "lightgreen";
fgColor
document.fgColor = "blue";
linkColor
The colour used for un-visited links (i.e., those that have not
yet been clicked-upon by the user). For example:
document.linkColor = "red";
alinkColor
The colour used for an active link (i.e., the one that was
clicked-upon most recently, or is the process of being clicked).
For example:
document.alinkColor = "lightred";
vlinkColor
The colour used for visited links (i.e., those that have
previously been clicked-upon by the user). For example:
document.vlinkColor = "darkred";
title
will replace the existing page title with the text "This title has
been changed".
forms
forms[index-number]
document.write("<h1>Hello</h1> ");
document.write("<p>Welcome to the new page</p>");
document.write("<p>To return to the lecture notes,");
document.write("<a href='05_JS4.html'>click here
</a></p>");
will replace the existing page display with the HTML code
contained within the brackets of the document.write()
methods. This code will display the text "Hi, there!" and
"Welcome to the new page", followed by a link back to this
page.
Note that all the HTML code within the brackets is enclosed
within double-quotes. Note too that the link declaration
('05_JS4.html') is enclosed within single quotes. You can use
either single or double quotes in both cases, but you must be
careful not to mix them up when placing one quoted string
inside another.
When you create a form in an HTML document using the <form> and </form> tags, you
automatically create a form object with properties, methods and events that relate to the form
itself and to the individual elements within the form (e.g., text boxes, buttons, radio-buttons,
etc.). Using JavaScript, you can add behaviour to buttons and other form elements and process
the information contained in the form.
<form name="myForm">
alert(document.forms[2].name);
Thus the code above will display the name property of the
example form, which is simply "formExamples".
method
<form method="POST">
The method property can be set either to POST or GET (see under
'forms' in any good HTML reference book if you're not sure about
the use of the POST and GET methods).
alert(document.forms[2].method);
action
<form action="mailto:sales@bigco.com">
The action property specifies either the URL to which the form data
should be sent (e.g., for processing by a CGI script) or mailto: followed
by an email address to which the data should be sent (for manual
processing by the recipient). See under 'forms' in any good HTML
reference book for more information on the use of the action attribute.
alert(document.forms[2].action);
length
alert(document.forms[2].length);
elements
alert(document.forms[2].elements[0].name);
will display the name of the first element in this form, which is the
button labelled "Get Form Name". It's name is "get_form_name".
<form onSubmit="displayFarewell()">
Each element within a form is an object in its own right, and each has properties, methods and
events that can be accessed using JavaScript.
Text-boxes and text-areas have almost identical sets of properties, methods and events, so they
will be considered together.
name
value
alert(document.forms[2].textBox1.value);
Type something into the text-box, then click here to see this code in operation.
onBlur
Buttons, Radio-buttons and Checkboxes have almost identical sets of properties, methods and
events, so they will be considered together.
Button, Radio-button and Checkbox properties include:
name
value
This button is named button1 and has the value Original value, original label.
We can change the value of the button, and hence it's label, using the following
code:
checked
if (document.forms[2].checkbox1.checked == true)
{
alert("Checked");
}
else
{
alert("Not checked");
};
Try clicking on the check-box to select and un-select it, then click
here
to see this code in operation.
Give the button focus (i.e., make it the default button that will
be activated if the return key is pressed). For example, here is
a button that displays an alert when clicked:
This button is named button2 and has the value Hello. We can give it focus using
the following code:
document.forms[2].button2.focus();
Click here to see this code in operation. A dotted border should appear around the
label on the button, indicating that the button now has focus. Pressing the RETURN
key should now activate the button, causing it to display the alert just as if it had
been clicked.
blur()
document.forms[2].button2.blur();
will remove the focus (indicated by the dotted line) from the button above. Click
here to see this code in operation.
click()
document.forms[2].button2.click();
Clicking on this button will have the same effect as clicking directly on the button
labelled 'Hello', i.e., it will display the 'Hello to you too' dialog box.
For example:
The first time you click the button it will gain focus,
and the alert will appear. However, if you click
again, no alert will appear because the button still
has focus as a result of the previous click. To make
the alert appear again, you will have to remove
focus from the button (e.g., by clicking somewhere
else on the document) then restore it by clicking the
button again.
example:
<input type=button
name="button5"
value="Click Here"
onBlur="alert('This
button is no longer
the default')">
Selection-boxes behave in
a very similar fashion to
radio-buttons: they present
several options, of which
only one can be selected at
a time. They also have a
similar set of properties,
methods and events.
The principal difference
from a programming
perspective is that
selection-boxes don't have
a checked property.
Instead, to find out which
option has been selected,
you must use the
SelectedIndex property.
SelectedInde Returns
x
an
integer
indicati
ng
which
of a
group
of
options
has
been
selecte
d by the
user.
For
exampl
e:
alert(document.forms[2].selectBox1.selectedInde
x);
Click here to see this code in operation. You should find that the value of
selectedIndex (as shown in the dialog box) varies from 0 to 2 depending upon