新闻发布系统,从数据库中读取到标题以后,若标题过长是如何实现只显示几个字后面用省略好?

新闻发布系统,从数据库中读取到标题以后,若标题过长是如何实现只显示几个字后面用省略好?能提供些代码参考下吗?我是新人~~... 新闻发布系统,从数据库中读取到标题以后,若标题过长是如何实现只显示几个字后面用省略好?
能提供些代码参考下吗?我是新人~~
展开
 我来答
扈金玉0IR
2007-07-23 · TA获得超过147个赞
知道答主
回答量:20
采纳率:0%
帮助的人:0
展开全部
你可以参照一下下面的代码:
<%
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>')
zsjdq
2007-07-23
知道答主
回答量:11
采纳率:0%
帮助的人:0
展开全部
首先根据你的发布页面的布局,确定需要显示多长的标题,然后从数据库取出标题后,察看这个标题的长度,如果小于你显示的长度,就全部显示,如果大于你显示的长度,就把那些多余的去掉,再加上省略号显示即可。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
俟高fY
2007-07-24 · 超过23用户采纳过TA的回答
知道答主
回答量:99
采纳率:0%
帮助的人:0
展开全部
假定你要显示10个字符
title=r("title")
lentitle=len(title)
if lentitle>10 then
title=left(title,10)+"..."
end if
response.write title
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
知草知春
2007-07-23 · TA获得超过733个赞
知道小有建树答主
回答量:1688
采纳率:0%
帮助的人:443万
展开全部
取出后自己处理.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式