循环取值有关问题
程序员文章站
2022-06-04 17:04:43
...
循环取值问题
页面
//从数据库取值后
while($re = mysql_fetch_array()){
如果我数据为1时,我想
}
出来页面的结果就是
怎么能实现呢,谢谢了
------解决方案--------------------
这你就用jquery取div中的值,然后跟php获取的值比较,给个变量赋值class类就好了
------解决方案--------------------
$index = 0;
while($re = mysql_fetch_array()){
$index++;
if($index == $re['字段'])
$class = 'class="checkedBtn"';
echo '
}
页面
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
';}
相关文章
相关视频