0
我使用addAttributes改變所有出現在窗體上的文本框的顏色改變文本框的顏色和我寫:要使用addAttributes
If Not IsPostBack Then
For Each CTL In Page.Controls
if TypeOf CTL Is TextBox Then
Dim Txt = New TextBox
Txt.Attributes.Add("onMouseOver", "javascript:this.style.background='yellow';")
Txt.Attributes.Add("onMouseOut", "javascript:this.style.background='white';")
End If
Next
End If
還有就是頁面上沒有錯誤,但它不工作..有沒有人可以幫助?