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

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


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題打開名為 "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") 

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

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

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

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

4.單項選擇題可插入多行注釋的 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-->

5.單項選擇題如何在 JavaScript 中添加注釋?()

A. ' This is a comment 
B. <!--This is a comment--> 
C. //This is a comment