Java Script Examples

Слайд 2

Getting the date


27/09/2004

Слайд 3

Getting and formatting the date


Monday, Sep 27, 2004

Слайд 4

Getting a random number

The following code gets a random floating-point number between

Getting a random number The following code gets a random floating-point number
0 and 1:

0.728762788388911

Слайд 5

Getting a random integer

The following code gets a random integer between 1

Getting a random integer The following code gets a random integer between
and 10:

5

Слайд 6

Displaying an alert box

The following code displays an alert box when a

Displaying an alert box The following code displays an alert box when
button is clicked:
// Buttons can only occur within forms

Слайд 7

Telling what happened

In my Concise JavaScript, part 2, I have code that

Telling what happened In my Concise JavaScript, part 2, I have code
shows what events occur when the user takes various actions
In the of the HTML page I define:

For each form element, I have a handler for every (plausible) event

Слайд 8

Telling what happened (Button)

Telling what happened (Button)
onDblClick="tell(this.name,'ondblclick');" onFocus="tell(this.name, 'onfocus');" onBlur="tell(this.name, 'onblur');" onMouseOver="tell(this.name, 'onmouseover');" onMouseOut="tell(this.name, 'onmouseout');" onChange="tell(this.name, 'onchange');" onKeyPress="tell(this.name, 'onkeypress');" onKeyDown="tell(this.name, 'onkeydown');" onKeyUp="tell(this.name, 'onkeyup');" onSelect="tell(this.name, 'onselect');" onReset="tell(this.name, 'onreset');" >
Имя файла: Java-Script-Examples.pptx
Количество просмотров: 159
Количество скачиваний: 0