これは私のプロジェクトです。セクションを選択し、それに応じて、「A」の場合は1 50のチェックボックスが表示され、「B」の場合は51から100までが表示されます。
これは私のメインコードです:
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="jsDatePick_ltr.min.css" />
<script type="text/javascript" src="jsDatePick.min.1.3.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
window.onload = function(){
new JsDatePick({
useMode:2,
target:"inputField",
dateFormat:"%d-%M-%Y"
});
};
</script>
</head>
<?php
$dept =$_COOKIE[dept];
include_once("../Include/connectdb.php");
include_once("../Include/data_menu.php");
include_once '../Include/pagemaker.php';
?>
<script type="text/javascript">
$(document).ready(function()
{
$(".batch").change(function()
{
var id=$(this).val();
var dataString = 'year_join='+ id;
$.ajax
({
type: "POST",
url: "ajax_subject.php",
data: dataString,
cache: false,
success: function(html)
{
$(".subject").html(html);
}
});
});
});
</script>
<script type="text/javascript">
$(document).ready(function()
{
$(".section").change(function()
{
alert('asdfa');
var id=$(this).val();
var dataString = 'section='+ id;
$.ajax
({
type: "POST",
url: "ajax_absent.php",
data: dataString,
cache: false,
success: function(html)
{
$(".absent").html(html);
}
});
});
});
</script>
</head>
<body>
<fieldset class="cbox"><legend>New Attendence System</legend>
<form name="frm" action=<?php print "edit_attendencePHP_NEW.php"; ?> method="GET"
id="content">
<br><br>
<div style="margin:80px">
<label>Batch :</label> <select name="batch" class="batch">
<option selected="selected">--Select Batch--</option>
<?php
$result = mysql_query("select distinct year_joining from student_profile
order by year_joining ")or die(mysql_error());
while($year = mysql_fetch_assoc($result)){
if($year[year_joining]!="" && $year[year_joining]>"2008"){
print "<OPTION value='$year[year_joining]'>$dept $year[year_joining]</OPTION>";
} }
?>
</select>
<label>Section :</label>
<select name="section" class="section">
<OPTION value='A'> A</OPTION>
<OPTION value='B'> B</OPTION>
</select>
Date :<input type="text" size="12" id="inputField" name="date"/>
<label>Hours :</label> <select name="hour" >
<OPTION value='1'> 1</OPTION>
<OPTION value='1'> 2</OPTION>
<OPTION value='1'> 3</OPTION>
</select>
</br></br>
<label>Subject :</label> <select name="subject" class="subject">
<option selected="selected">------------Choose Subject------------</option>
</select>
</br>
<label>Mark the Absenties : </label>
<input type="checkbox" class="section">
<br/></br>
<div class="absent"></div>
<input class="bluebutton" type="submit" value="Go">
</form><br>
<label class="comment">select a batch frm the list and press "Go"</label>
</fieldset>
</body>
</html>
これは私のajax_absent.phpで、個別に正常に動作しています。
<?php
include_once("../Include/connectdb.php");
if($_POST['section'])
{
$sec=$_POST['section'];
if($sec=="A")
$j=1;
else if($sec=="B")
$j=51;
for($i=0;$i<=49;$i++)
{ $k=$j+$i;
if($i%5==0)
{ echo "</br>"; }
echo '<input type ="Checkbox" value="'.$i . '">'.$k .
'</option>';
}
?>
ドロップダウンメニューに実装したのと同じ動的な概念が同じファイルにありますが、チェックボックスには1つのチェックボックスしかありません。