1. Trang chủ
  2. » Công Nghệ Thông Tin

Bài giảng Thiết kế web Dreamweaver CS4 - Chapter 10: Document Object Model (DOM)

30 46 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 30
Dung lượng 900,06 KB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

The Document Object Model is a platform- and language-neutral interface that will allow programs and scripts to dynamically access and update the content, structure and style of documents. In this chapter we will learn with Document Object Model, inviting you to refer.

Trang 1

Document Object Model (DOM)

Trang 2

HTML DOM

language-neutral interface that will allow programs and scripts to dynamically access and update the content, structure and style of

password text

Trang 3

CREATING OBJECTS

Define the function:

function ObjectName(List Parameter) {

this.property1= Parameter1;

this.property2= Parameter2;

… this.method1=functionName1;

this.method2=functionName2;

… }

Trang 5

ARRAY OBJECT

Array: An array is a special variable, which can

hold more than one value, at a time

Trang 6

ARRAY OBJECT

Array Object Properties

Ex:

var fruits = ["Banana", "Orange", "Apple", "Mango"];

document.write("Original length: " + fruits.length);

Trang 7

ARRAY OBJECT

Array Object Methods

Trang 8

DATE OBJECT

Date Object: The Date object is used to work with

dates and times

var d = new Date(year, month, day, hours,

minutes, seconds, milliseconds);

csehui.wordpress.com Computer Science & Engineering

Trang 9

DATE OBJECT

Date Object Methods

Trang 10

DATE OBJECT

Date Object Methods

Trang 11

MATH OBJECT

mathematical tasks

of Math can be called by using Math as an object, without creating it

var x = Math.PI; // Returns PI

var y = Math.sqrt(16); // Returns the square root of

16

Trang 12

MATH OBJECT

Math Object Methods

Trang 14

MATH OBJECT

String Object Methods

Trang 15

FORM OBJECT

Form:

– For each instance of a <form> tag in an HTML document, a Form object is created

Form Object Methods

Trang 16

FORM OBJECT

Form Object Properties

Trang 17

FORM OBJECT

Form elements Collection

containing each element in the form

Syntax

Trang 19

FORM OBJECT

Button Object: The Button object represents a

button in an HTML form

For each instance of an <input type="button"> tag

in an HTML form, a Button object is created

elements[] array of the form, or by using

document.getElementById()

Trang 20

FORM OBJECT

Button Object Properties

Trang 21

FORM OBJECT

Button Object Methods

Trang 22

FORM OBJECT

Select Object

an HTML form

form, a Select object is created

through the elements[] array of the form, or by using document.getElementById()

Trang 23

FORM OBJECT

Select Object Properties

Trang 24

FORM OBJECT

Select Object Methods

Trang 25

through the elements[] array of the form, or by using document.getElementById()

Trang 26

FORM OBJECT

Radio Object Properties

Trang 27

FORM OBJECT

Radio Object Methods

Trang 28

FORM OBJECT

Text Object

– The Text object represents a text-input field in

an HTML form

– For each instance of an <input type="text"> tag

in an HTML form, a Text object is created

through the elements[] array of the form, or by using document.getElementById()

Trang 29

FORM OBJECT

Text Object Properties

Trang 30

FORM OBJECT

Text Object Methods

document.getElementById('text1').blur()

</script>

Ngày đăng: 30/01/2020, 07:45