- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何将项目符号编号放入表格中。下面我循环回显主要指南和子指南的列表。
例如:
1. major1 a. sub1 b. sub2 c. sub32. major2 a. sub1 b. sub2 c. sub3
something like that.
<table width="594" height="82" cellpadding="3" bordercolor="#999999">
<tr>
<td width="38" height="20" bgcolor="#333333" scope="col"><span class="style30"></span></td>
<td width="234" bgcolor="#333333" scope="col"><div align="center" class="style31">Behavioral Guidelines</div></td>
<td colspan="4" bgcolor="#333333" scope="col"><div align="left" class="style31">
<div align="center">Style</div>
</div></td>
<td scope="col"> </td>
</tr>
<?php while($row = mysql_fetch_array($result2)){?>
<tr>
<td height="24" valign="top" bgcolor="#FFFFCC"><div align="center" class="style7">Major</div></td>
<td valign="top" bgcolor="#FFFFCC"><div align="left"><span class="style29"><?php echo $row['majorBg'];?></span></div></td>
<td width="17" valign="top" bgcolor="#FFFFCC"><div align="center"><span class="style15"><?php echo $row['msg'];?></span></div></td>
<td width="17" valign="top" bgcolor="#FFFFCC"><div align="center"><span class="style15"><?php echo $row['mct'];?></span></div></td>
<td width="17" valign="top" bgcolor="#FFFFCC"><div align="center"><span class="style15"><?php echo $row['mch'];?></span></div></td>
<td width="17" valign="top" bgcolor="#FFFFCC"><div align="center"><span class="style15"><?php echo $row['mad'];?></span></div></td>
<td width="194" valign="top" bgcolor="#FFFFCC"><span class="style24"><a href="sub.php?major_id=<? echo $row['major_id']; ?>" class="style22" >+ add sub guidelines (optional)</a></span></td>
</tr>
<? $sqlCommand="select * from sub_guidelines where major_id =". $row['major_id'];
$sql1 = mysql_query($sqlCommand) or die (mysql_error());
while($row1 = mysql_fetch_array($sql1))
{?>
<tr>
<td height="2"><div align="center"><span class="style7">Sub</span></div></td>
<td height="2"><div align="left"><span class="style15"><?php echo $row1['subBg'];?></span></div></td>
<td height="2" class="style15"><div align="center"><?php echo $row1['ssg'];?></div></td>
<td height="2" class="style15"><div align="center"><?php echo $row1['sct'];?></div></td>
<td height="2" class="style15"><div align="center"><?php echo $row1['sch'];?></div></td>
<td height="2" class="style15"><div align="center"><?php echo $row1['sad'];?></div></td>
<td height="2" class="style15"><div align="left"></div></td>
<?php } ?>
</tr>
<?php } ?>
<?php mysql_close($con) ?>
</table>
结果是:
1. major1 a. sub1 a. sub2 a. sub31. major2 a. sub1 a. sub2 a. sub3
它们的主要和次要编号相同。
最佳答案
您可以使用以下 HTML 来完成此操作。根据需要调整 PHP 脚本以获得以下输出。
<ol>
<li>major1
<ol type="a">
<li>sub1
<li>sub2
<li>sub3
</ol>
<li>major2
<ol type="a">
<li> sub1
<li> sub2
<li> sub3
</ol>
</ol>
关于php - 如何添加编号或项目符号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8074166/
我使用 Faker gem 来播种某些数据。我怎样才能设置最大。假公司名称的长度,如何设置假号码的范围? name = Faker::Company.name 这里我想包括最大长度,因为名称对最大长
我试图实现一种方法,在该方法中我创建一个记分板(while 循环)并按某个数字字段(点)对获取的结果进行排序。但我需要实现的是如下 rank----username--point 1st------t
如何在 ListView (vsReport) 中对项目进行编号?现在我有类似的东西: Item := ListView1.Items.Add; Item.Caption :=inttostr(Ite
我正在尝试使用几个按钮在红色和绿色之间切换,我已经浏览了 Jquery 文档,但我似乎无法弄清楚这个。 您可以在我的代码片段中看到,当我单击按钮时,所有按钮都会变成不同的颜色。 而且必须有一种更短的方
是否可以在 GROUP_CONCAT 中进行编号 喜欢 如果,来自 GROUP_CONCAT(empnam SEPARATOR ', ') 我有一套, 我需要 我试过跟随,但没有得到想要的结
在 Linux 中,如何使用用户指定的事件编号创建输入事件接口(interface)并将其映射到特定的设备事件? 我正在使用 gpio-keys 驱动程序来翻译键盘上的按键操作。我定义了要在我的板配置
对于低级应用程序,我在编译时将某种索引定义为一种类型: template class Idx{ using TYPE = T_; static const int IDX = IDX_; }
请问如何设置这种格式的编号: 1) number 1 2) number 2 3) ... 在 HTML 中? 我只找到了一种获取这种格式的方法: 1. number 1 2. number 2 3.
对于我的研究,我需要很少的数据,其中之一是前一次提交的 SHA 编号,即如果我提供特定的提交编号/SHA 编号,我应该能够获得它之前的 SHA 编号。 帮我用 git 命令来获得相同的结果。 最佳答案
我需要询问何时按下数字 1 键,而不是在数字键盘上,而是在 Q 上方的数字 1(试图使这尽可能清楚)。 我已经浏览了 Keys 数组上所有可用的键,但没有一个匹配我正在寻找的键。 有没有办法做到这一点
我正在尝试使用 NAnt 任务设置构建服务器。我有几个想要构建的 Git 存储库,但我在结果的版本控制方面遇到了问题。 如何对库 (dll) 进行版本控制,以便每个构建都使用一个数字来表示每个版本?我
我有一个如下所示的表格: +-------+--------+--------+ | Grp | Party | Member | +-------+--------+--------+ | F
我正在使用 SQL Server 2008。我在查询中返回了这些数据,看起来非常像按 Day 和 ManualOrder 排序的... ID Day ManualOrder Lat L
区域:Silverlight 中的文本框 问题:我需要知道当前编辑的是什么“行号”。 我试过:作为一种解决方法,我尝试使用 textBox.Split("\r") 进行拆分,并计算 Regex 上具有
提前致歉,我不确定如何将 null 值添加到 pandas 数据框,所以我在列表中放置了“无”。我有一个具有以下值的数据框: None, None, 50,60,70,80,90,None,None,
我的应用程序中有一个标签,其中会带有徽章编号,该标签基于3个不同时间发生的3种不同操作。我知道如何使用以下方式设置标签栏标志: [[[[[self tabBarController] tabBar]
有谁知道为什么我们的供应商需要我们的 sku 编号来开发新应用程序? 我们自己将应用程序带入应用程序商店,也许我错了,但构建应用程序或将其上传到商店不需要 sku - 它仅在 iTunes 中连接而不
这个问题已经有答案了: Rationale for Matcher throwing IllegalStateException when no 'matching' method is called
我使用[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0]清除徽章编号。它工作正常,但同时删除了远程通知。 还有许多其
我有一个待办事项列表应用程序,我想在图标徽章中显示未完成任务的数量。 我的问题是:我是否应该在用户每次在应用程序中删除/添加新任务时更新徽章编号,还是仅在应用程序即将进入后台模式时更新徽章编号? 最佳
我是一名优秀的程序员,十分优秀!