[求助]如何换行

Sherlock_Holmes 2006-03-03 08:55:13
我写了个留言板,
但是不支持换行,
怎么才能按照用户输入的
显示的时候也按照用户输入的格式???
...全文
224 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
niitlxr 2006-03-04
  • 打赏
  • 举报
回复
更简单的办法是

在显示时 直接给个 文本域
xinxideyilian 2006-03-03
  • 打赏
  • 举报
回复
很简单了,我前几天在做活也遇到了这个问题了
xiemingmei 2006-03-03
  • 打赏
  • 举报
回复
需要把 回车换行 替换成 <br>等
ASP的例子:

<%
'字符串HTML编码
function htmlencode(str)
dim result
dim l
if isNULL(str) then
htmlencode=""
exit function
end if
l=len(str)
result=""
dim i
for i = 1 to l
select case mid(str,i,1)
case "<"
result=result+"<"
case ">"
result=result+">"
case chr(13)
result=result+"<br>"
case chr(34)
result=result+"""
case "&"
result=result+"&"
case chr(32)
'result=result+" "
if i+1<=l and i-1>0 then
if mid(str,i+1,1)=chr(32) or mid(str,i+1,1)=chr(9) or mid(str,i-1,1)=chr(32) or mid(str,i-1,1)=chr(9) then
result=result+" "
else
result=result+" "
end if
else
result=result+" "
end if
case chr(9)
result=result+" "
case else
result=result+mid(str,i,1)
end select
next
htmlencode=result
end function

'HTML编码还原
function htmldecode(str)
str=trim(str)
if isNull(str) then
htmldecode=""
exit function
end if
str=replace(str,"<","<")
str=replace(str,">",">")
str=replace(str,"<br>",chr(13))
str=replace(str,""",chr(34))
str=replace(str,"&","&")
str=replace(str," ",chr(32))
htmldecode=str
end function
%>

有分没有,记得给分阿。

81,092

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

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