js checkbox 옵션 개수 php 를 제한 하여 여러 checkbbox 를 가 져 오 는 방법

3668 단어 checkbox
js 제한 checkbox 에서 선택 한 개수 와 phop 에서 여러 checkbbox 를 얻 는 방법 을 공유 합 니 다.
1, js 제한 checkbbox 선택 개수 의 코드:
<!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=gb2312"> 

<title>          -www.jbxue.com-    </title> 

<script type="text/javascript" > 

function checkDate(n){ 

var checkedCount=0; 

for(var i=0;i<myForm.course.length ;i ++){ 

if(myForm.course[i].checked){ 

checkedCount++;



} 

} 

if(checkedCount>n){



alert("         ");



return false;



} 

}



</script> 

</head> 

<body> 

<form name="myForm" method="post" id="myForm" action="test.php"> 

         (    ):<br> 

<input type="checkbox" name="course[]" value="  " onClick="return checkDate(3)">  <br> 

<input type="checkbox" name="course[]" value="  " onClick="return checkDate(3)">  <br> 

<input type="checkbox" name="course[]" value="  " onClick="return checkDate(3)">  <br> 

<input type="checkbox" name="course[]" value="  " onClick="return checkDate(3)">  <br> 

<input type="checkbox" name="course[]" value="  " onClick="return checkDate(3)">  <br> 

<input type="checkbox" name="course[]" value="  " onClick="return checkDate(3)">  <br> 

<input type="submit" value="  "> 

<input type="reset" value="  "> 

</form> 

</body> 

</html>

2, php 파일 에서 checkbbox 를 얻 는 방법:
<?php

/**

*   checkbox  

* edit by www.jbxue.com

*/

$course=$_POST['course'];

for($i=0;$i<count($course);$i++) 

{ 

if($course[$i]!="") 

{

echo $course[$i]."<br/>";

} 

} 

?>

좋은 웹페이지 즐겨찾기