JavaScript is what is called a Client-side Scripting Language. That means that it is a computer programming language that runs inside an Internet browser (a browser is also known as a Web client because it connects to a Web server to download pages).

The way JavaScript works is interesting. Inside a normal Web page you place some JavaScript code (See How Web Pages Work for details on Web pages). When the browser loads the page, the browser has a built-in interpreter that reads the JavaScript code it finds in the page and runs it.

Web page designers use JavaScript in many different ways. One of the most common is to do field validation in a form. Many Web sites gather information from users in online forms, and JavaScript can help validate entries. For example, the programmer might validate that a person's age entered into a form falls between 1 and 120.

Another way that web page designers use JavaScript is to create calculators. Here are several examples:

To give you an example of an extremely simple JavaScript calculator, the HTML below shows you how to create a Fahrenheit to Celsius converter using JavaScript:
   


Fahrenheit to Celsius Converter
Enter a temperature in degrees F:




Click this button to calculate the temperature
in degrees C:




Temperature in degrees C is:







If you have read How Web Pages Work and How CGI Scripts Work, then a good portion of this HTML will be familiar. This is the basic structure of any web page:








There is one piece of JavaScript code in the header that is the function to calculate the conversion from Fahrenheit to Celsius:




The function is called temp. It contains JavaScript code to calculate a Celsius temperature.



In the body of the page there is a typical form:


Fahrenheit to Celsius Converter


Enter a temperature in degrees F:


Click this button to calculate the temperature
in degrees C:
onClick=temp(this.form)>


Temperature in degrees C is:



This line is key:

onClick=temp(this.form)>

This is a normal button control. When the user clicks it, it calls the function in the head of the page because of the onClick notation.

As programming languages go, JavaScript is average difficulty. It is not especially hard to learn how to use it if you already understand programming, but if you are new to programming it is certainly not an easy language to start with. What you can do, however, is modify this sample code and expand it to create other calculators.

0 comments

Post a Comment