我在第一个 php 页面中有一个学生复选框列表和一个搜索框。在 ajax 页面中,我将获得搜索结果。
但问题是,如果用户选择了第一个搜索结果并再次搜索,第一次搜索的选择会丢失
如何在第一次搜索时保存选择?我尝试在会话数组中进行选择,但它不起作用
//check list
$qry="select cand_id,name from candidate where inst_id=".$_SESSION['inst_id']."";
$res=$ob->select($qry,$connect);
while($rw=pg_fetch_row($res))
{
echo"<br><input type=\"checkbox\" name=\"check[]\" value=\"$rw[0]\">";echo$rw[1];echo"<br>" ;
}
//Ajax page
if($ajaxData!="")
{
if($_SESSION['usertype_id']==1)
{
$qry="select cand_id,name from candidate where name like'$dataup%' ";
}
else if($_SESSION['usertype_id']==2)
{
$qry="select cand_id,name from candidate where inst_id=".$_SESSION['inst_id']."
and name like'$dataup%' ";
}
$res=$ob->select($qry,$connect);
$words=array();
$count = pg_num_rows($res);
if($count>0)
{
$i=0;
//echo"<div style=\"width: 200px; height: 200px;overflow-y: auto;padding-top: 10px;padding-right: 0px;padding-bottom: 0.25in;\">";
while($rw=pg_fetch_row($res))
{
$words[$i]=$rw[0];$i++;
}
$_SESSION['checkAjax']=$words;//can_id array
- 如何使用数组
$_SESSION['checkAjax']
突出显示? - 为什么
$_SESSION['checkAjax']
在每个 ajax 调用上都取消设置? - 只需要更改所选学生姓名的颜色