Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ตรวจสอบ radio เพื่อ enabled textbox เมื่อมีการติ๊ก และ disabled กลับ เมื่อมีการ ติ๊ก ที่ radio หมวดอื่น



 

ตรวจสอบ radio เพื่อ enabled textbox เมื่อมีการติ๊ก และ disabled กลับ เมื่อมีการ ติ๊ก ที่ radio หมวดอื่น

 



Topic : 068557



โพสกระทู้ ( 309 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์




<form name="myForm">
<strong> ปัญหาที่แจ้ง </strong></p>
<input name="rdo2" type="radio" value="อุปกรณ์" onclick="fncRadio()" />
อุปกรณ์ : <input type ="text" name= "eqm" id="eqm" disabled="disabled" >
ยี่ห้อ: <input type ="text" name= "brand" id="brand" disabled="disabled">
หมายเลขเครื่อง (S/N); <input type ="text" name = "serial" id="serial" disabled="disabled">
สถานที่ตั้ง :<input type ="text" name ="adress" id="adress" disabled="disabled">

<input name="rdo2" type="radio" value="ระบบงาน(Software)" onclick="fncRadio()" />
ระบบงาน (Software):
<input type ="text" name ="software" id="software" disabled="disabled">

<input name="rdo2" type="radio" value="อื่นๆ" onclick="fncRadio()" />
อื่นๆ<input type="text" name="other1" size="30" id="other" disabled="disabled" />
รายละเอียด/อาการ :<input type="text" name="detail" id="detail" size="100" disabled="disabled" >
</form>

*อยากให้ enabled text box ที่อยู่ในประเภทของ radio และ disabled กลับ เมื่อมีการเปลี่ยน ประเภทของ radio จะใช้ javascript ตรวจสอบยังไงคับ



Tag : PHP, JavaScript







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-10-29 19:09:45 By : Necrotorture View : 3513 Reply : 7
 

 

No. 1



โพสกระทู้ ( 314 )
บทความ ( 0 )



สถานะออฟไลน์


ก่อนอื่นต้องเข้าใจก่อนว่า Javascript ทำงานที่ฝั่ง Client โดยมันรู้จัก Element แต่ละตัวในหน้าจอที่เราสร้างโดยการอ้างถึง ID เพราะฉะนั้น Element แต่ละตัวจะมี ID ของมันเอง โดยใช้คำสั่ง

document.getElementById("Element id แต่ละตัวของใครของมัน").value

ถ้าจะใช้ Javascript ก็ต้องรู้พื้นฐานการเขียนโปรแกรมอยู่บ้างใช่มั้ยครับ เพราะฉะนั้น หลักการก็คือการใช้ If then else ธรรมดานี่แหละครับในการตรวจสอบ เช่น
.........................................................................................

ถ้า document.getElementById("id1").value นี้ถูกการคลิก ให้
ตรวจสอบข้อมูล
ถ้าใช่ให้ enable
ถ้าไม่ใช่ให้ disable

........................................................................................

ข้างบนนี้เป็นตัวอย่างการคิดง่ายๆนะครับ ถ้าจะให้สามารถนำไปใช้ได้จริงต้องลำดับเหตุการณ์ให้ถูกต้อง (คิดว่าคงเข้าใจคำว่า algorithm)
ลองใช้คำพูดที่อ่านเข้าใจ เขียนออกมาเป็นขั้นตอนการตรวจสอบก่อน แล้วค่อยแปลงออกมาเป็น Javascript ถ้ายังไงก็ลองเขียนออกมาแล้วโพสถามต่อไปก็ได้นะครับ เผื่อท่านอื่นจะได้ทราบและนำไปใช้ได้ด้วย






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-29 19:54:35 By : Songkram
 


 

No. 2



โพสกระทู้ ( 309 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


แล้วมีวิธี อื่นอีกมั้ยครับ เพราะผมไม่ค่อยเก่ง javascript
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-31 09:45:20 By : Necrotorture
 

 

No. 3



โพสกระทู้ ( 142 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

ผมลองทำให้แล้วนะครับลองตรวจสอบดู นะน่าจะใช้ได้
Code (PHP)
<meta http-equiv=Content-Type content="text/html; charset=windows-874">
<script type="text/javascript">

function fncRadio($data)

{
if ($data=="1")
		{
		document.getElementById("eqm").disabled = false;	
		document.getElementById('brand').disabled= false;	
		document.getElementById('serial').disabled= false;	
		document.getElementById('adress').disabled= false;	
	
		document.getElementById("software").disabled = true;	
		document.getElementById('other1').disabled= true;	
		document.getElementById('detail').disabled= true;	
	
		document.getElementById("software").value = '';	
		document.getElementById("other1").value = '';	
		document.getElementById("detail").value = '';	

		}
else if ($data=="2")
		{
		document.getElementById("software").disabled = false;	
		
		document.getElementById("eqm").disabled = true;	
		document.getElementById('brand').disabled= true;	
		document.getElementById('serial').disabled= true;	
		document.getElementById('adress').disabled= true;	
		document.getElementById('other1').disabled= true;	
		document.getElementById('detail').disabled= true;	
		
		
		document.getElementById("eqm").value = '';	
		document.getElementById("brand").value = '';	
		document.getElementById("serial").value = '';	
		document.getElementById("adress").value = '';	
		document.getElementById("other1").value = '';	
		document.getElementById("detail").value = '';	
		
		

		}
else if ($data=="3")
		{
		document.getElementById("other1").disabled = false;	
		document.getElementById('detail').disabled= false;	
		
		document.getElementById("eqm").disabled = true;	
		document.getElementById('brand').disabled= true;	
		document.getElementById('serial').disabled= true;	
		document.getElementById('adress').disabled= true;	
		document.getElementById('software').disabled= true;	
		
		
		document.getElementById("eqm").value = '';	
		document.getElementById("brand").value = '';	
		document.getElementById("serial").value = '';	
		document.getElementById("adress").value = '';	
		document.getElementById("software").value = '';	
		}
}
</script>
<form name="myForm">
  <p><strong> ปัญหาที่แจ้ง </strong>
    </p>
    </p>
  <p>
    <input name="rdo2" type="radio" value="อุปกรณ์" onclick="fncRadio(1)" />
    อุปกรณ์ : 
  <input type ="text" name= "eqm" id="eqm" disabled="disabled" >
    ยี่ห้อ: 
  <input type ="text" name= "brand" id="brand" disabled="disabled">
    หมายเลขเครื่อง (S/N); 
  <input type ="text" name = "serial" id="serial" disabled="disabled">
    สถานที่ตั้ง :
  <input type ="text" name ="adress" id="adress" disabled="disabled">
  </p>
  <p>
    <input name="rdo2" type="radio" value="ระบบงาน(Software)" onclick="fncRadio(2)" />
    ระบบงาน (Software):
    <input type ="text" name ="software" id="software" disabled="disabled">
  </p>
  <p>
    
    <input name="rdo2" type="radio" value="อื่นๆ" onclick="fncRadio(3)" />
    อื่นๆ
    <input type="text" name="other1" size="30" id="other" disabled="disabled" />
    รายละเอียด/อาการ :
    <input type="text" name="detail" id="detail" size="100" disabled="disabled" >
      </p>
</form>

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-31 10:42:18 By : yuyu7878
 


 

No. 4



โพสกระทู้ ( 309 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ตอบความคิดเห็นที่ : 3 เขียนโดย : yuyu7878 เมื่อวันที่ 2011-10-31 10:42:18
รายละเอียดของการตอบ ::
โค้ดนี้ไม่ติด อ่าครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-31 13:28:47 By : Necrotorture
 


 

No. 5



โพสกระทู้ ( 142 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

โค้ดนี้ไม่ติด อ่าครับ

ไม่ติดอะไร เหรอ ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-31 13:47:56 By : yuyu7878
 


 

No. 6



โพสกระทู้ ( 309 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


คลิ็กที่ radio แล้ว textbox ก็ยังไม่เปิด อ่าครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-31 14:22:17 By : Necrotorture
 


 

No. 7



โพสกระทู้ ( 142 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

ลองเอาอันนี้ test ดิ
Code (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<script type="text/javascript">

function fncRadio($data)

{
if ($data=="1")
		{
		document.getElementById("eqm").disabled = false;	
		document.getElementById('brand').disabled= false;	
		document.getElementById('serial').disabled= false;	
		document.getElementById('adress').disabled= false;	
	
		document.getElementById("software").disabled = true;	
		document.getElementById('other1').disabled= true;	
		document.getElementById('detail').disabled= true;	
	
		document.getElementById("software").value = '';	
		document.getElementById("other1").value = '';	
		document.getElementById("detail").value = '';	

		}
else if ($data=="2")
		{
		document.getElementById("software").disabled = false;	
		
		document.getElementById("eqm").disabled = true;	
		document.getElementById('brand').disabled= true;	
		document.getElementById('serial').disabled= true;	
		document.getElementById('adress').disabled= true;	
		document.getElementById('other1').disabled= true;	
		document.getElementById('detail').disabled= true;	
		
		
		document.getElementById("eqm").value = '';	
		document.getElementById("brand").value = '';	
		document.getElementById("serial").value = '';	
		document.getElementById("adress").value = '';	
		document.getElementById("other1").value = '';	
		document.getElementById("detail").value = '';	
		
		

		}
else if ($data=="3")
		{
		document.getElementById("other1").disabled = false;	
		document.getElementById('detail').disabled= false;	
		
		document.getElementById("eqm").disabled = true;	
		document.getElementById('brand').disabled= true;	
		document.getElementById('serial').disabled= true;	
		document.getElementById('adress').disabled= true;	
		document.getElementById('software').disabled= true;	
		
		
		document.getElementById("eqm").value = '';	
		document.getElementById("brand").value = '';	
		document.getElementById("serial").value = '';	
		document.getElementById("adress").value = '';	
		document.getElementById("software").value = '';	
		}
}
</script>
</head>

<body>
<form name="myForm">
  <p><strong> ปัญหาที่แจ้ง </strong>
    </p>
    </p>
  <p>
    <input name="rdo2" type="radio" value="อุปกรณ์" onclick="fncRadio(1)" />
    อุปกรณ์ : 
  <input type ="text" name= "eqm" id="eqm" disabled="disabled" >
    ยี่ห้อ: 
  <input type ="text" name= "brand" id="brand" disabled="disabled">
    หมายเลขเครื่อง (S/N); 
  <input type ="text" name = "serial" id="serial" disabled="disabled">
    สถานที่ตั้ง :
  <input type ="text" name ="adress" id="adress" disabled="disabled">
  </p>
  <p>
    <input name="rdo2" type="radio" value="ระบบงาน(Software)" onclick="fncRadio(2)" />
    ระบบงาน (Software):
    <input type ="text" name ="software" id="software" disabled="disabled">
  </p>
  <p>
    
    <input name="rdo2" type="radio" value="อื่นๆ" onclick="fncRadio(3)" />
    อื่นๆ
    <input type="text" name="other1" size="30" id="other" disabled="disabled" />
    รายละเอียด/อาการ :
    <input type="text" name="detail" id="detail" size="100" disabled="disabled" >
      </p>
</form>

</body>
</html>


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-10-31 14:27:03 By : yuyu7878
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ตรวจสอบ radio เพื่อ enabled textbox เมื่อมีการติ๊ก และ disabled กลับ เมื่อมีการ ติ๊ก ที่ radio หมวดอื่น
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่