不知道如何循环

kingsjava 2011-08-22 11:09:47
以下如何做出循环,请帮助,谢谢各位
----------------------------------------
<LI>
<P><A href="http://www.1.com/" target=_blank><IMG alt="" src="images/1.jpg"><SPAN>1标题</SPAN></A></P>
<P><A href="http://www.2.com/" target=_blank><IMG alt="" src="images/2.jpg"><SPAN>2标题</SPAN></A></P>
<P><A href="http://www.3.com/" target=_blank><IMG alt="" src="images/3.jpg"><SPAN>3标题</SPAN></A></P>
</LI>
<LI>
<P><A href="http://www.4.com/" target=_blank><IMG alt="" src="images/4.jpg"><SPAN> 4标题</SPAN></A></P>
<P><A href="http://www.5.com/" target=_blank><IMG alt="" src="images/5.jpg"><SPAN>5标题</SPAN></A></P>
<P><A href="http://www.6.com/" target=_blank><IMG alt="" src="images/6.jpg"><SPAN>6标题</SPAN></A></P>
</LI>
...全文
85 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
  • 打赏
  • 举报
回复
<%
For i=1 To 6
If (i Mod 3)=1 Then Response.Write("<LI>")
%>
<P><A href="http://www.<%=i%>.com/" target=_blank><IMG alt="" src="images/<%=i%>.jpg"><SPAN>1标题</SPAN></A></P>
<%
If (i Mod 3)=0 Then response.write "</LI>"
Next
%>
kingsjava 2011-08-22
  • 打赏
  • 举报
回复
真没搞定呀。
xzf888 2011-08-22
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 lzp4881 的回复:]
<LI>
<%for i=1 to 6%>
<P><A href="http://www.<%=i%>.com/" target=_blank><IMG alt="" src="images/<%=i%>.jpg"><SPAN>1标题</SPAN></A></P>
if i mod 3 =0 then
response.write "</LI><LI>"
end if
<%next……
[/Quote]

LZ呀,lzp4881可是高手呀,我有好多问题都是这位热心的lzp4881帮我解决的,万分感谢他,
kingsjava 2011-08-22
  • 打赏
  • 举报
回复
lzp4881
谢谢,但答案不对的,循环到最后,多出了个<Li>
lzp4881 2011-08-22
  • 打赏
  • 举报
回复
<LI>
<%for i=1 to 6%>
<P><A href="http://www.<%=i%>.com/" target=_blank><IMG alt="" src="images/<%=i%>.jpg"><SPAN>1标题</SPAN></A></P>
if i mod 3 =0 then
response.write "</LI><LI>"
end if
<%next%>
kingsjava 2011-08-22
  • 打赏
  • 举报
回复
好心人,帮下我吧,非常的需要。
hfdsoft 2011-08-22
  • 打赏
  • 举报
回复

<li>
<%
For i = 1 TO 6
if (i-1) Mod 3 = 0 and i>1 Then Response.Write "</li><li>"
%>
<P><A href="http://www.<%=i%>.com/" target=_blank><IMG alt="" src="images/<%=i%>.jpg"><SPAN>1标题</SPAN></A></P>
<%
Next
%>
</li>

28,391

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧