單項選擇題下列控件當(dāng)前控件文本水平對齊方式的是()

A. aa.style.textDecorationUnderline
B. aa.style.letterSpacing
C. aa.style.textAlign
D. aa.style.verticalAlign


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題下列哪個代碼可以設(shè)置或獲取當(dāng)前控件與其底部相鄰控件或父控件底邊之間的距離()。

A. aa.style.marginBottom
B. aa.style.marginTop
C. aa.style.marginLeft
D. aa.style.marginRight

2.單項選擇題以下哪段代碼是獲取控件內(nèi)文本的顏色()。

A. var color = aa.style.color
B. aa.style.color = ‘blue’
C. var width = aa.borderWidth
D. var style = aa.style.borderBottomStyle

3.單項選擇題代碼P.style.borderBottomWidth=2表示()

A. 設(shè)置<p>的邊框為2像素
B. 設(shè)置<p>的底邊框為2像素
C. 設(shè)置id為P的標(biāo)簽的邊框為2像素
D. 設(shè)置id為P的標(biāo)簽的底邊框為2像素

4.單項選擇題要給id為P的標(biāo)簽行高設(shè)為20像素,代碼為:()

A. P.style.fontWeight
B. P.style.margin
C. P.style.lineHeight
D. 以上都不正確

5.單項選擇題對代碼 setTimtout("show()",100) 理解正確的是()。

A.有語法錯誤,要去掉雙引號
B.表示100毫秒后調(diào)用一次show方法
C.100表示毫秒,在setTimtout后加一個參數(shù),100也可以表示為秒
D.setTimtout相當(dāng)于C#中的Timer