單項(xiàng)選擇題建立JavaScript函數(shù)庫的目的是()。

A.減少重復(fù)編程
B.統(tǒng)一編程風(fēng)格
C.節(jié)省裝載JavaScript函數(shù)的時(shí)間
D.以上都是


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題如何獲得客戶端瀏覽器的名稱?()

A. client.navName 
B. navigator.appName 
C. browser.name 

2.單項(xiàng)選擇題打開名為 "window2" 的新窗口的 JavaScript 語法是?()

A. open.new("http://www.w3school.com.cn","window2") 
B. new.window("http://www.w3school.com.cn","window2") 
C. new("http://www.w3school.com.cn","window2") 
D. window.open("http://www.w3school.com.cn","window2") 

3.單項(xiàng)選擇題如何求得2和4中最大的數(shù)?()

A. Math.ceil(2,4) 
B. Math.max(2,4) 
C. ceil(2,4) 
D. top(2,4)

4.單項(xiàng)選擇題如何把 7.25 四舍五入為最接近的整數(shù)?()

A. round(7.25) 
B. rnd(7.25) 
C. Math.rnd(7.25) 
D. Math.round(7.25)

5.單項(xiàng)選擇題可插入多行注釋的 JavaScript 語法是?()

A. /*This comment has more than one line*/ 
B. //This comment has more than one line// 
C. <!--This comment has more than one line-->