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,038

HOME > PHP > PHP Forum > เกี่ยวกับ radioครับ <script language="JavaScript">//เช็คค่า ว่าได้ทำการ เลือก redio หรือป่าว



 

เกี่ยวกับ radioครับ <script language="JavaScript">//เช็คค่า ว่าได้ทำการ เลือก redio หรือป่าว

 



Topic : 044619



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



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




<script language="JavaScript">

//เช็คค่า ว่าได้ทำการ เลือก redio หรือป่าว ถ้าไม่ได้เลือกให้แสดงข้อความแสดง
var Equipment=document.getElementById('Equipment');
var Chemical=document.getElementById('Chemical');
var Ebzyme=document.getElementById('Ebzyme');

if (Equipment.checked) {Order_Type = Equipment.value;}
else if (Chemical.checked) {
Order_type = Chemical.value;
} else if (Ebzyme.checked) {
Order_type = Ebzyme.value;
} else if (Other.checked) {
Order_type = Other.value;
} else {
alert ("กรุณาเลือก Order Type ! ")
}

alert (Order_type);
req.onreadystatechange = function(){

if(req.readyState == 4){
if(req.status == 200){

}
}

}
///*******************************************
</script>

จาก code ด้านบน ผมได้ลองนำมันไปใช้ในเรื่องของการ เช็ค radio แล้วครับ คือผมส่งค่ามาเช็คแล้ว โดย เรียกจาก ID แต่ทีนี้ผมงงว่าผมจะส่งค่าที่เรา ติ๊กเลือกเอาไว้ไปยังไงครับ ช่วยแนะนำหน่อยครับ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-06-28 15:20:56 By : SOUL View : 2198 Reply : 10
 

 

No. 1



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



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


ค่าของมันอยู่ใน โค้ดphpครับ
<input name="" type="radio" value="">
ตรง name= จะเป็นชื่อของradio
value= จะเป็นค่าของมัน(เมื่อเลือก)

ก็ลองใช้ Form ส่งค่าได้ครับ
โดยอีกpage

รับค่าโดย

$value = $_REQUEST[ชื่อradio];

echo $value;//จะได้ค่าที่เลือก






Date : 2010-06-28 15:27:44 By : 50121680
 


 

No. 2



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

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

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


Code (PHP)
<script type="text/javascript">
	function chkradio(){
		
	var Order_type = '';
	var Equipment = document.getElementById('Equipment');
	var Chemical = document.getElementById('Chemical');
	var Ebzyme = document.getElementById('Ebzyme');
	var Other = document.getElementById('Other');
	
	if(Equipment.checked==true){
		Order_type = Equipment.value;
	}
	
	if(Chemical.checked==true){
		Order_type = Chemical.value;
	}
	
	if(Ebzyme.checked==true){
		Order_type = Ebzyme.value;
	}
	
	if(Other.checked==true){
		Order_type = Other.value;
	}
	
	alert(Order_type);
}
	
</script>
<form id="form1" name="form1" method="post" action="">
  <table>
    <tr>
      <td><input type="radio" value="Equipment" name="Order_type" id="Equipment" />
        <font color="#006600" size="2">Equipment (วัสดุอุปกรณ์)</font></td>
      <td><input type="radio" value="Chemical" name="Order_type" id="Chemical" />
        <font color="#006600" size="2">Chemical (สารเคมี)</font></td>
      <td><input type="radio" value="Ebzyme" name="Order_type" id="Ebzyme" />
        <font color="#006600" size="2">Enzyme (เอนไซม์)</font></td>
      <td><font color="#006600" size="2">
        <input name="Order_type" type="radio" id="Other" value="Other" />
        Other (อื่นๆ)</font></td>
    </tr>
  </table>
  <input type="submit" name="button" id="button" value="Submit" onclick="chkradio();" />
</form>

Date : 2010-06-28 15:53:13 By : ไวยวิทย์
 

 

No. 3



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



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


แล้วหลังจากที่ได้ทำการ submit แล้ว cript ก็จะทำการแสดง Order_type มาใช่ไหม ครับ เพื่อให้เรา ตอบ ok อีกครั้ง นึงใช่ไหมครับ ต่อจากนั้นก็จะส่งค่าที่เราได้เลือก ไปยังอีก Page นึงใช่ป่าวครับ
แล้วถ้าแบบนี้ผมจะแก้ code ตรงนี้ยังไงดีครับ เพราะผมเขียนส่งค่าแบบนี้ ครับ ผมเลยงงว่าแล้วผมจะแก้ยังไง ขอให้ช่วยชี้แนวทางหน่อยนะครับ พี่ ไวยวิทย์ ผมแก้มะถูกแล้วครับ ช่วยอีกนิดนะครับ

Code (PHP)
<script language="JavaScript">
	   var HttPRequest = false;

	   function doCallAjax(Mode) {
		  HttPRequest = false;
		  if (window.XMLHttpRequest) { // Mozilla, Safari,...
			 HttPRequest = new XMLHttpRequest();
			 if (HttPRequest.overrideMimeType) {
				HttPRequest.overrideMimeType('text/html');
			 }
		  } else if (window.ActiveXObject) { // IE
			 try {
				HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
			 } catch (e) {
				try {
				   HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {}
			 }
		  } 
		  
		
			
	
		  var url = 'excel_ordersave.php';
		  var pmeters = "tRequest_name=" + encodeURI( document.getElementById("txtRequest_name").value) +
						"&tdatepicker=" + encodeURI( document.getElementById("datepicker").value ) +
						"&tEquipment=" + encodeURI( document.getElementById("Equipment").value ) +
						"&tChemical=" + encodeURI( document.getElementById("Chemical").value ) +
						"&tEbzyme=" + encodeURI( document.getElementById("Ebzyme").value ) +
						"&tOther=" + encodeURI( document.getElementById("txtOther").value ) +
						"&tProject=" + encodeURI( document.getElementById("txtProject").value ) +
						"&tRequested_objective=" + encodeURI( document.getElementById("txtRequested_objective").value ) +
						"&tDescription=" + encodeURI( document.getElementById("txtDescription").value ) +
						"&tSupplier_name=" + encodeURI( document.getElementById("txtSupplier_name").value ) +
						"&tSize=" + encodeURI( document.getElementById("txtSize").value ) +
						"&tQuantity=" + encodeURI( document.getElementById("txtQuantity").value ) +
						"&tPrize=" + encodeURI( document.getElementById("txtPrize").value ) +
						"&tSource=" + encodeURI( document.getElementById("txtSource").value ) +
						"&tMode=" + Mode;
			  if (!HttPRequest) {
			 alert('Cannot create XMLHTTP instance');
			 return false;
		  }
		   			
			
			HttPRequest.open('POST',url,true);

			HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
			HttPRequest.setRequestHeader("Content-length", pmeters.length);
			HttPRequest.setRequestHeader("Connection", "close");
			HttPRequest.send(pmeters);
			
			
			HttPRequest.onreadystatechange = function()
			{

				 if(HttPRequest.readyState == 3)  // Loading Request
				  {
				   document.getElementById("mySpan").innerHTML = "Now is Loading...";
				  }

				 if(HttPRequest.readyState == 4) // Return Request
				  {
				   document.getElementById("mySpan").innerHTML = HttPRequest.responseText;
				   document.getElementById("txtRequest_name").value = '';
				   document.getElementById("datepicker").value = '';
				   document.getElementById("Equipment").value = '';
				   document.getElementById("Chemical").value = '';
				   document.getElementById("Ebzyme").value = '';
				   document.getElementById("txtOther").value = '';
				   document.getElementById("txtProject").value = '';
				   document.getElementById("txtRequested_objective").value = '';
				   document.getElementById("txtDescription").value = '';
				   document.getElementById("txtSupplier_name").value = '';
				   document.getElementById("txtSize").value = '';
				   document.getElementById("txtQuantity").value = '';
				   document.getElementById("txtPrize").value = '';
				   document.getElementById("txtSource").value = '';
				  
				  }
				
			}
}

Date : 2010-06-28 16:56:27 By : SOUL
 


 

No. 4



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

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

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


ค่าที่คุณจะส่งไปคือตรงที่ var pmeters นี้
Code (PHP)
 var pmeters = "tRequest_name=" + encodeURI( document.getElementById("txtRequest_name").value) +
						"&tdatepicker=" + encodeURI( document.getElementById("datepicker").value ) +
						"&tEquipment=" + encodeURI( document.getElementById("Equipment").value ) +
						"&tChemical=" + encodeURI( document.getElementById("Chemical").value ) +
						"&tEbzyme=" + encodeURI( document.getElementById("Ebzyme").value ) +
						"&tOther=" + encodeURI( document.getElementById("txtOther").value ) +
						"&tProject=" + encodeURI( document.getElementById("txtProject").value ) +
						"&tRequested_objective=" + encodeURI( document.getElementById("txtRequested_objective").value ) +
						"&tDescription=" + encodeURI( document.getElementById("txtDescription").value ) +
						"&tSupplier_name=" + encodeURI( document.getElementById("txtSupplier_name").value ) +
						"&tSize=" + encodeURI( document.getElementById("txtSize").value ) +
						"&tQuantity=" + encodeURI( document.getElementById("txtQuantity").value ) +
						"&tPrize=" + encodeURI( document.getElementById("txtPrize").value ) +
						"&tSource=" + encodeURI( document.getElementById("txtSource").value ) +
						"&tMode=" + Mode;



คุณก็เอาตัวอย่างที่ได้ คือ ค่า Order_type เนี่ยะ มาต่อกับ ค่า pmeters แล้วค่อยส่งไปสิ อาจจะเป็น "&Order_type" + Order_type
Date : 2010-06-29 08:09:03 By : ไวยวิทย์
 


 

No. 5



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



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


จะลองดูนะครับ
Date : 2010-06-29 08:45:28 By : SOUL
 


 

No. 6



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



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


ผมลองทำแล้วนะครับแต่ แต่เวลาผมกด submit ไปแล้ว มันไม่สามารถส่งค่าอะไรได้เลยครับ แต่ถ้าผมลบผมสามารถส่งค่าไปได้ปกติ ครับ แนะนำผมอีกนิดนะครับ
Date : 2010-06-29 09:43:46 By : SOUL
 


 

No. 7



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

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

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


รับค่า Order_type ก่อนที่จะนำไปรวมกับ pmeters หน่ะครับ ทำไมจะส่งไม่ได้มันก็เหมือน ๆ กัน กับการส่งค่าทั่วไป
Date : 2010-06-29 09:48:58 By : ไวยวิทย์
 


 

No. 8



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



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


อันนี้ code ผมนะครับ ผมได้เพิ่มตามที่คุณบอกแล้วนะครับ แต่ทำไม่สำเร็จ ยังก็รบกวนคุณอีกครั้งนะครับ

Code (PHP)
 var url = 'excel_ordersave.php';
		  var pmeters = "tRequest_name=" + encodeURI( document.getElementById("txtRequest_name").value) +
						"&tdatepicker=" + encodeURI( document.getElementById("datepicker").value ) +
						"&tEquipment=" + encodeURI( document.getElementById("Equipment").value ) +
						"&tChemical=" + encodeURI( document.getElementById("Chemical").value ) +
						"&tEbzyme=" + encodeURI( document.getElementById("Ebzyme").value ) +
						"&tOther=" + encodeURI( document.getElementById("txtOther").value ) +
						"&tProject=" + encodeURI( document.getElementById("txtProject").value ) +
						"&tRequested_objective=" + encodeURI( document.getElementById("txtRequested_objective").value ) +
						"&tDescription=" + encodeURI( document.getElementById("txtDescription").value ) +
						"&tSupplier_name=" + encodeURI( document.getElementById("txtSupplier_name").value ) +
						"&tSize=" + encodeURI( document.getElementById("txtSize").value ) +
						"&tQuantity=" + encodeURI( document.getElementById("txtQuantity").value ) +
						"&tPrize=" + encodeURI( document.getElementById("txtPrize").value ) +
						"&tSource=" + encodeURI( document.getElementById("txtSource").value ) +
						"&tOrder_type=" + Order_type+///ส่วนที่เพิ่มเข้าไปครับ
						"&tMode=" + Mode;

Date : 2010-06-29 10:03:04 By : SOUL
 


 

No. 9



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

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

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


Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script language="JavaScript">
	   var HttPRequest = false;

	   function doCallAjax() {
		  HttPRequest = false;
		  if (window.XMLHttpRequest) { // Mozilla, Safari,...
			 HttPRequest = new XMLHttpRequest();
			 if (HttPRequest.overrideMimeType) {
				HttPRequest.overrideMimeType('text/html');
			 }
		  } else if (window.ActiveXObject) { // IE
			 try {
				HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
			 } catch (e) {
				try {
				   HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {}
			 }
		  } 
		  
		  if (!HttPRequest) {
			 alert('Cannot create XMLHTTP instance');
			 return false;
		  }
		  
		  	var Order_type = '';
			var Equipment = document.getElementById('Equipment');
			var Chemical = document.getElementById('Chemical');
			var Ebzyme = document.getElementById('Ebzyme');
			var Other = document.getElementById('Other');
			
			if(Equipment.checked==true){
				Order_type = Equipment.value;
			}
			
			if(Chemical.checked==true){
				Order_type = Chemical.value;
			}
			
			if(Ebzyme.checked==true){
				Order_type = Ebzyme.value;
			}
			
			if(Other.checked==true){
				Order_type = Other.value;
			}

		  var value = document.getElementById('name').value;
		  var url = 'test2.php';
		  var pmeters =	"&name=" + encodeURI(value) +"&Order_type="+ Order_type;

			HttPRequest.open('POST',url,true);

			HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
			HttPRequest.setRequestHeader("Content-length", pmeters.length);
			HttPRequest.setRequestHeader("Connection", "close");
			HttPRequest.send(pmeters);
			
			
			HttPRequest.onreadystatechange = function()
			{

				 if(HttPRequest.readyState == 3)  // Loading Request
				  {
				   document.getElementById("mySpan").innerHTML = "Now is Loading...";
				  }

				 if(HttPRequest.readyState == 4) // Return Request
				  {
				   document.getElementById("mySpan").innerHTML = HttPRequest.responseText;			  
				  }
				
			}

	   }
	</script>
</head>
<body>

<form action="" method="post" name="form1" >
  <table>
    <tr>
      <td>ใส่อะไรไปก็ได้ :</td>
      <td><input type="text" name="name" id="name"/></td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
      <td><input type="radio" value="Equipment" name="Order_type" id="Equipment" />
        <font color="#006600" size="2">Equipment (วัสดุอุปกรณ์)</font></td>
      <td><input type="radio" value="Chemical" name="Order_type" id="Chemical" />
        <font color="#006600" size="2">Chemical (สารเคมี)</font></td>
      <td><input type="radio" value="Ebzyme" name="Order_type" id="Ebzyme" />
        <font color="#006600" size="2">Enzyme (เอนไซม์)</font></td>
      <td><font color="#006600" size="2">
        <input name="Order_type" type="radio" id="Other" value="Other" />
        Other (อื่นๆ)</font></td>
    </tr>
  </table>
<input type="button" name="button" id="button" value="ลองส่งค่า" onclick="doCallAjax();" />
<div id="mySpan"></div>
</form>

</body>
</html>




test2.php

<?php

echo $_POST['name'];;
echo "<br>";
echo $_POST['Order_type'];

?>

เปรียบเทียบเอาหน่ะครับ
Date : 2010-06-29 10:10:59 By : ไวยวิทย์
 


 

No. 10



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



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


ขอคุณมากครับ ตัวอย่างของคุณทำให้ผมเข้าใจมากขึ้นกว่าเดิม และไขข้อข้องใจให้ผมอีก หลายๆๆๆเรื่อง ครับ ขอบคุณมากครับ คุณ ไวยวิทย์
Date : 2010-06-29 11:08:14 By : SOUL
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : เกี่ยวกับ radioครับ <script language="JavaScript">//เช็คค่า ว่าได้ทำการ เลือก redio หรือป่าว
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่