Bài giảng Nhập môn HTML và thiết kế Web: Bài 13 - Các đối tượng cơ bản trong JavaSript giới thiệu tới các bạn một số đối tượng cụ thể như string, math, date, các đối tượng trình duyệt. Mời các bạn tham khảo.
⊄ ⊄ ⊄ ⊄ this.property function displayName(name) { alert("Xin chào " + name); } ⊄ for (variable in Object) { ;} color = new Array("red","blue","green") for (cl in color) { document.write(color[cl]); document.write(""); } ⊄ with (Object) { ;} ⊄ var a, b, c; var r = 10; with (Math) { a = PI * r * r; b = r * cos(PI); c = r * sin(PI / 2);} document.write(a + ""); document.write(b + ""); document.write(c + ""); ⊄ objectName= new ObjectType(para1[,para2, ); function employee(name, code) { this.name = name; this.code = code; } var myemp = new employee("Nguyễn Văn Hòa", "EM03"); document.write(" Họ tên:" + myemp.name); document.write(" Mã nhân viên: " + myemp.code); ⊄ eval(string); var x = 10; var y = 5; document.write(eval("x+y*3")); ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ alert(document.title); ⊄ ⊄ ⊄ ⊄ ⊄ function computer(form) { form.txtKQ.value = eval(form.txtBT.value);} Kết quả: DOM Example function checkNum(num) { if (num == "") { aler("Chưa điền số"); return false; } if (isNaN(num)) { alert("Phải điền số"); return false; }} DOM Example ... method="get"> < /html> ⊄ for (variable in Object) { ;} ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ ⊄ DOM Example var oHtml = document.documentElement;... document.documentElement; var oHead = oHtml.firstChild; var oBody = oHtml.lastChild; alert(oHead.nodeName); //outputs “HEAD” alert(oBody.parentNode == oHtml); //outputs “true”