循环取值问题
页面
1
2
3
//从数据库取值后
while($re = mysql_fetch_array()){
如果我数据为1时,我想
1
变成
1
}
出来页面的结果就是
1
2
3
怎么能实现呢,谢谢了
------解决方案--------------------
这你就用jquery取div中的值,然后跟php获取的值比较,给个变量赋值class类就好了
------解决方案--------------------$index = 0;
while($re = mysql_fetch_array()){
$index++;
if($index == $re['字段'])
$class = 'class="checkedBtn"';
echo '
1
';
}