|
|
|
asp วิธีแก้ textbox,radio Button เวลา disabled ไม่ให้ข้อความเปนสีเทา ทำยังไงครับ |
|
|
|
|
|
|
|
Code (JavaScript)
<html>
<body>
<form name="form1" method="post">
<input type="text" name="txtName" value="Weerachai Nukitram">
<br>
<input type="button" name="btnDisbled" value="Disabled" OnClick="document.form1.txtName.disabled=true;document.form1.txtName.style.backgroundColor='red' ">
<input type="button" name="btnDisbled" value="Enable" OnClick="document.form1.txtName.disabled=false;document.form1.txtName.style.backgroundColor='#FFFFFF' ">
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-04-08 08:52:53 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (VB.NET)
btnDisbled.Attributes.Add("OnClick", "document.form1." & txtName.ClientID & ".disabled=true;document.form1." & txtName.ClientID & ".style.backgroundColor='red'")
กรณีที่เป็น ASP.NET ให้ Attribute.Add เพื่อ Control ตัว ClientID ของ Textbox แทนครับ
Go to : ASP.NET Attribute.Add
Go to : ASP.NET ClientID
|
|
|
|
|
Date :
2011-04-08 08:55:10 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|