|
|
|
[PHP] radio button ถ้าไม่ได้เลือกให้แสดงแจ้งเตือน "กรุณาเลือกข้อมูล" |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
background-color: #099;
}
body,td,th {
color: #FFF;
}
</style>
</head>
<script language="javascript">
function fncSubmit()
{
if(document.form1.rdoA.checked == false )
{
alert('Please Select Area ');
return false;
}
document.form1.submit();
}
</script>
<body>
<style type="text/css">
body,td,th {
color: #000;
}
body {
background-color: #06F;
}
</style>
<form name=form1 form method="post" action="test1.php" target="HOLE" onSubmit="JavaScript:return fncSubmit();">
<font size=4 color="white"><b>Area</b></font> <br>
<input name="rdoA" type="radio" id ="rdoA" value="red"><font color= "white">red</font><br>
<input name="rdoA" type="radio" id ="rdoA" value="blue"><font color= "white">blue</font><br>
<input type=submit size=50 value=" Search ">
..........
</form>
</body>
</html>
ได้ code แบบนี้ค่ะ แต่มันยังไม่ขึ้นเตือน อะค่ะ T_T
|
|
|
|
|
Date :
2015-06-29 14:50:56 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้แล้วค่ะ ไม่ขึ้นเหมือนเดิม
Code (PHP)
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
background-color: #099;
}
body,td,th {
color: #FFF;
}
</style>
</head>
<script language="javascript">
function fncSubmit()
{
if(document.form1.rdoA.checked == false )
{
alert('Please Select Area ');
return false;
}
document.form1.submit();
}
</script>
<body>
<style type="text/css">
body,td,th {
color: #000;
}
body {
background-color: #06F;
}
</style>
<form name=form1 method="post" action="test1.php" target="HOLE" onSubmit="JavaScript:return fncSubmit();">
<font size=4 color="white"><b>Area</b></font> <br>
<input name="rdoA" type="radio" id ="rdoA" value="red"><font color= "white">red</font><br>
<input name="rdoA" type="radio" id ="rdoA" value="blue"><font color= "white">blue</font><br>
<input type=submit size=50 value=" Search ">
..........
</form>
</body>
</html>
|
|
|
|
|
Date :
2015-06-29 14:57:13 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ก็ได้นะครับผมว่าง่ายดี
Code (PHP)
<html>
<head>
<title>Test</title>
</head>
<body>
<form action="Radio.php" method="post" name="form1">
Please select color<br>
<input name="rdo1" type="radio" value="Blue" required>Blue<br>
<input name="rdo2" type="radio" value="Red">Red<br>
<input name="Submit" type="submit" value="Submit">
</form>
</body>
</html>
|
|
|
|
|
Date :
2015-06-29 15:05:18 |
By :
tam78910 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ๆ มากค่ะ ใช้วิธีของพี่ @ljfeinthedeep ง่ายดีค่ะ :)
|
|
|
|
|
Date :
2015-06-29 15:21:26 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สาเหตุ คือ javascritp มันจับ element ของ id ครับ น้องตั้ง id ="rdoA" ซ้ำกัน ควรจะทราบปัญหา ก่อนจะไปใช้ของง่ายครับ...
|
|
|
|
|
Date :
2015-06-29 15:24:55 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|