感觉真的是老了,这么简单效果都编不出来...
比如一个字符串 357编一个程序实现显示34567,但其中的357用红色表示,其它用黑色
如果字符串为57,则 显示 567,其中的57也显示红色,共它为黑
如果字符串为127 则显示1234567 其中的127为红色.
大家知道我的意思了吗?就是根据首位数字生成到7的字符串,但出现的字符用红色表示.
我下面的代码就只能显示第一位为红色,怎么改都不成.
<%
a="357"
N=1
for b=3 to 7
' response.write mid(a,N,1) & "--" & b & "<BR>"
if mid(a,N,1)=trim(b) then
response.write "<font color=red>" & b & "</font>"
else
response.write b
end if
N=N+1
next
%>