ASP网页中重复区域横向换行显示代码如何写
求救横向显示数量控制的代码。以下是用DV8JavaScript制作的代码,现可以横向显示,但我想让它一排显示6个后换行显示,因水平有限,特向高手们请教帮我修改一下,本人不...
求救横向显示数量控制的代码。
以下是用DV8 JavaScript制作的代码,现可以横向显示,但我想让它一排显示6个后换行显示
,因水平有限,特向高手们请教帮我修改一下,本人不甚感激!
现在横向显示的结果如下
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■……………………
希望做成显示效果如下
■ ■ ■ ■ ■ ■
■ ■ ■ ■ ■ ■
■ ■ ■ ■ ■ ■
代码:
<table width="730" height="20" border="0" align="right" cellspacing="0" style="border-width: 0px">
<tr>
<td height="50" align="left" valign="middle" style="border-style: none; border-width: medium"><table width="730" height="20" border="0" cellspacing="0">
<tr>
<% while ((Repeat2__numRows-- != 0) && (!chcp3fl.EOF)) { %>
<td class="zt1"><A HREF="3Class.asp?<%= Server.HTMLEncode(MM_keepNone) + ((MM_keepNone!="")?"&":"") + "chcp3flID=" + chcp3fl.Fields.Item("chcp3flID").Value %>" target="_top"><%=(chcp3fl.Fields.Item("产品子类").Value)%></A></td>
<%
Repeat2__index++;
chcp3fl.MoveNext();
}
%>
</tr>
</table></td>
</tr>
问题补充:要求子类显示6个后换行
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td height="20">
<table width="730" height="20" border="0" align="right" cellspacing="0" style="border-width: 0px">
<tr>
<td height="50" align="left" valign="middle" style="border-style: none; border-width: medium"><table width="730" height="20" border="0" cellspacing="0">
<tr>
<td class="zt1"><A HREF="3Class.asp?chcp3flID=182" target="_top">高压熔断器</A></td>
<td class="zt1"><A HREF="3Class.asp?chcp3flID=181" target="_top">低压熔断器</A></td>
<td class="zt1"><A HREF="3Class.asp?chcp3flID=183" target="_top">熔断器底座</A></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr> 展开
以下是用DV8 JavaScript制作的代码,现可以横向显示,但我想让它一排显示6个后换行显示
,因水平有限,特向高手们请教帮我修改一下,本人不甚感激!
现在横向显示的结果如下
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■……………………
希望做成显示效果如下
■ ■ ■ ■ ■ ■
■ ■ ■ ■ ■ ■
■ ■ ■ ■ ■ ■
代码:
<table width="730" height="20" border="0" align="right" cellspacing="0" style="border-width: 0px">
<tr>
<td height="50" align="left" valign="middle" style="border-style: none; border-width: medium"><table width="730" height="20" border="0" cellspacing="0">
<tr>
<% while ((Repeat2__numRows-- != 0) && (!chcp3fl.EOF)) { %>
<td class="zt1"><A HREF="3Class.asp?<%= Server.HTMLEncode(MM_keepNone) + ((MM_keepNone!="")?"&":"") + "chcp3flID=" + chcp3fl.Fields.Item("chcp3flID").Value %>" target="_top"><%=(chcp3fl.Fields.Item("产品子类").Value)%></A></td>
<%
Repeat2__index++;
chcp3fl.MoveNext();
}
%>
</tr>
</table></td>
</tr>
问题补充:要求子类显示6个后换行
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td height="20">
<table width="730" height="20" border="0" align="right" cellspacing="0" style="border-width: 0px">
<tr>
<td height="50" align="left" valign="middle" style="border-style: none; border-width: medium"><table width="730" height="20" border="0" cellspacing="0">
<tr>
<td class="zt1"><A HREF="3Class.asp?chcp3flID=182" target="_top">高压熔断器</A></td>
<td class="zt1"><A HREF="3Class.asp?chcp3flID=181" target="_top">低压熔断器</A></td>
<td class="zt1"><A HREF="3Class.asp?chcp3flID=183" target="_top">熔断器底座</A></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr> 展开
1个回答
展开全部
<tr>
<% while ((Repeat2__numRows-- != 0) && (!chcp3fl.EOF)) { %>
<td class="zt1"><A HREF="3Class.asp?<%= Server.HTMLEncode(MM_keepNone) + ((MM_keepNone!="")?"&":"") + "chcp3flID=" + chcp3fl.Fields.Item("chcp3flID").Value %>" target="_top"><%=(chcp3fl.Fields.Item("产品子类").Value)%></A></td>
<%
Repeat2__index++;
chcp3fl.MoveNext();
}
%>
</tr>
改为
<% while ((Repeat2__numRows-- != 0) && (!chcp3fl.EOF)) {
i = i+1
if i mod 6 = 1 Then response.write "<tr>"
%>
<td class="zt1"><A HREF="3Class.asp?<%= Server.HTMLEncode(MM_keepNone) + ((MM_keepNone!="")?"&":"") + "chcp3flID=" + chcp3fl.Fields.Item("chcp3flID").Value %>" target="_top"><%=(chcp3fl.Fields.Item("产品子类").Value)%></A></td>
<%
if i mod 6 = 0 Then response.write "</tr>"
Repeat2__index++;
chcp3fl.MoveNext();
}
%>
<% while ((Repeat2__numRows-- != 0) && (!chcp3fl.EOF)) { %>
<td class="zt1"><A HREF="3Class.asp?<%= Server.HTMLEncode(MM_keepNone) + ((MM_keepNone!="")?"&":"") + "chcp3flID=" + chcp3fl.Fields.Item("chcp3flID").Value %>" target="_top"><%=(chcp3fl.Fields.Item("产品子类").Value)%></A></td>
<%
Repeat2__index++;
chcp3fl.MoveNext();
}
%>
</tr>
改为
<% while ((Repeat2__numRows-- != 0) && (!chcp3fl.EOF)) {
i = i+1
if i mod 6 = 1 Then response.write "<tr>"
%>
<td class="zt1"><A HREF="3Class.asp?<%= Server.HTMLEncode(MM_keepNone) + ((MM_keepNone!="")?"&":"") + "chcp3flID=" + chcp3fl.Fields.Item("chcp3flID").Value %>" target="_top"><%=(chcp3fl.Fields.Item("产品子类").Value)%></A></td>
<%
if i mod 6 = 0 Then response.write "</tr>"
Repeat2__index++;
chcp3fl.MoveNext();
}
%>
参考资料: i
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询