|
|
|
ช่วยดูที ครับ เช็คค่าว่าง radio button ที่ดึงข้อมูลจากฐานข้อมูล ยังเช็คไม่ผ่านเลย |
|
|
|
|
|
|
|
Code (JavaScript)
function check()
{
for(var i = 1; i <=<?php echo $numrows; ?>; i++){
eval("if(document.forms.member.Teacher_ID["+i+"].checked==false){alert('กรุณาอาจารย์ ด้วยครับ');return false;}");
}
return true;
}
ลองดูละกันไม่รู้จะได้ไหม
|
|
|
|
|
Date :
2011-02-13 23:53:33 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้ครับ
|
|
|
|
|
Date :
2011-02-14 00:03:37 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ jquery แทนได้มะ ง่ายกว่าเยอะ
|
|
|
|
|
Date :
2011-02-14 00:13:32 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่าง ไปโหลด jquery core เองนะ jquery-1.4.4.min.js โหลดจาก jquery.com
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" />
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#myform').submit(function(){
if($(":checked").size() < 1) {
alert('เลือกอาจารย์หน่อย');
return false;
}else{
return true;
}
});
});
</script>
</head>
<body>
<?php
$cbx = array(
1=>"อาจารย์กอ",
2=>"อาจารย์ขอ",
3=>"อาจารย์คอ",
4=>"อาจารย์งอ",
5=>"อาจารย์จอ",
);
?>
<form id="myform" method="post">
<?php
foreach($cbx as $id=>$name){
echo '<input type="radio" name="teacher" id="teacher' . $id . '" /><label for="teacher' . $id . '">' . $name . '</label><br />';
}
?>
<input type="submit" value="submit" />
<input type="reset" value="reset" />
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-02-14 00:24:23 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|