DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> 初學JavaScript第二章
初學JavaScript第二章
編輯:JavaScript基礎知識     
JavaScript的對象都是實例化了的,只可以使用而不能夠創建繼承於這些對象的新的子類.

window對象為所有對象的Parent
window對象的主要屬性有:Name,Length,Parent,Self,Top,Status,Default Status,Opener,Closed.
window對象的主要方法有:Item,alert,blur,close,confirm,open,focus,showModalDialog.

Document對象的常用屬性:alinkcolor,Anchors,bgcolor,cookie,domain,embeds,
fgcolor,layers,linkcolor,location,title,url,vlinkcolor
Anchors屬性的使用:
function goNextAnchor(where)
{
window.location.hash = where ;
}
<input type="button" value="下一個" onClick="goNextAnchor('sec2')"/>

數組對象的創建:
function students(name,age)
{
this.name = name ;
this.age = age ;
}
stu1 = new students("thtwin",22) ;

stu = new Array(5) ;
stu[0] = "thtwin" ;
stu[1] = "thtwinj2ee" ;
........
stu.length //數組的長度

Math對象的相關方法使用:
Math.abs(arg) ; //求用戶設置數的絕對值
Math.max(arg1,arg2) ; //返回兩個數中的較大值
Math.round(arg1) ; //將浮點數捨入成它最近的一個整數>0.5進一,否則丟掉小數位
Math.floor(arg1) ; //求的是小於或等於變量的值
Math.ceil(arg1) ; //大於或等於變量的值
Math.random() ; //產生一個0到1之間的隨機數

JavaScript中的日期對象:
該對象沒有屬性,但是可以通過一些方法來設置時間.
禁止使用1970年1月1日之前的時間.
thisDay = new Date();
thisDay = new Date(month day,year hours:minutes:seconds) ;
thisDay.getYear() ;
thisDay.getMonth() ;
thisDay.getDate() ;//返回一個月份中的日期值.這個方法直接返回一個1以31之間的日期值
thisDay.getDay() ;
thisDay.getTime() ;//返回一個代表當前日期的整數值.(192687456985)
thisDay.getHours() ;
thisDay.getMinutes() ;
thisDay.getSecondes() ;
thisDay.toLocaleString() ;//返回該時間的字符串值

With語句的使用

With(Object)
{
statements ;
}
說明:在存取對象屬性和方法時不用重復指定參考對象.在With語句塊中,凡是JavaScript
不識別的屬性和方法都和該語句塊指定的對象有關.如:
當使用與Document對象有關的write()或者writeln()方法時,往往用如下形式:
document.writeln("Hell!") ;
如果需要顯示大量數據時,就會多次使用同樣的document.writeln() ;語句,這時就可以
像下面的程序那樣,把所有的以Document對象為參考的對象的語句放到With語句塊中,從而
達到減少語句量的目的.下面是一個With語句使用的例子:
<script language="javascript">
<!--
With(document)
{
write("thtwin") ;
write("thtwinj2ee") ;
wirte("test") ;
}
//-->
</script>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved