新闻发布系统,从数据库中读取到标题以后,若标题过长是如何实现只显示几个字后面用省略好?
新闻发布系统,从数据库中读取到标题以后,若标题过长是如何实现只显示几个字后面用省略好?能提供些代码参考下吗?我是新人~~...
新闻发布系统,从数据库中读取到标题以后,若标题过长是如何实现只显示几个字后面用省略好?
能提供些代码参考下吗?我是新人~~ 展开
能提供些代码参考下吗?我是新人~~ 展开
4个回答
展开全部
你可以参照一下下面的代码:
<%
do while not rs.eof
if rs("is_img") then
image="<span class=redfont>[多图]</span>"
imagelen=4
elseif not rs("smallImg")="nothing" then
image="<img src=../icon/imageicon.gif border=0>"
imagelen=2
else
image=""
imagelen=0
end if
if rs("is_b") then
b1="<b>"
b2="</b>"
else
b1=""
b2=""
end if
if rs("is_red") then
red1=" class=redfont"
else
red1=""
end if
title=rs("title")
'if strlen(title)>25-imagelen then
' title=strvalue(title,23-imagelen)
'end if
title2=rs("title")
if strlen(title2)>20-imagelen then
title2=strvalue(title2,18-imagelen)
end if
content=strvalue(replace(rs("content"),"<br>","/"),160)
%>
document.write('<tr height=18><td width=100%><img src="../icon/arrow2.gif" border=0> <a href="<%=url%>?id=<%=rs("id")%>" target="_blank" <%=red1%>><%=b1%><%=title%><%=b2%></a></td> </tr><tr><td height=1 background=../icon/dotline.gif></td></tr>')
<%
rs.movenext
loop
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
document.write('</table>')
<%
do while not rs.eof
if rs("is_img") then
image="<span class=redfont>[多图]</span>"
imagelen=4
elseif not rs("smallImg")="nothing" then
image="<img src=../icon/imageicon.gif border=0>"
imagelen=2
else
image=""
imagelen=0
end if
if rs("is_b") then
b1="<b>"
b2="</b>"
else
b1=""
b2=""
end if
if rs("is_red") then
red1=" class=redfont"
else
red1=""
end if
title=rs("title")
'if strlen(title)>25-imagelen then
' title=strvalue(title,23-imagelen)
'end if
title2=rs("title")
if strlen(title2)>20-imagelen then
title2=strvalue(title2,18-imagelen)
end if
content=strvalue(replace(rs("content"),"<br>","/"),160)
%>
document.write('<tr height=18><td width=100%><img src="../icon/arrow2.gif" border=0> <a href="<%=url%>?id=<%=rs("id")%>" target="_blank" <%=red1%>><%=b1%><%=title%><%=b2%></a></td> </tr><tr><td height=1 background=../icon/dotline.gif></td></tr>')
<%
rs.movenext
loop
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
document.write('</table>')
展开全部
首先根据你的发布页面的布局,确定需要显示多长的标题,然后从数据库取出标题后,察看这个标题的长度,如果小于你显示的长度,就全部显示,如果大于你显示的长度,就把那些多余的去掉,再加上省略号显示即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假定你要显示10个字符
title=r("title")
lentitle=len(title)
if lentitle>10 then
title=left(title,10)+"..."
end if
response.write title
title=r("title")
lentitle=len(title)
if lentitle>10 then
title=left(title,10)+"..."
end if
response.write title
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
取出后自己处理.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询