如何让HTML的TEXTAREA显示带格式的文本
展开全部
找个富文本框可以实现这个效果。textarea只能显示基础的换行和空格。其它的格式就无能为力了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
每一个TextBox控件中文本都是同一格式的,可能通过ForeColor等实现,我想你也知道,就不说了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
建议用pre试试,不行的话,在往pre里加些样式。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
做不到,但是可以用ifram来代替用TextBox实现
给你个简单例子
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<select id="Select2" onchange="formatfont(edit,'fontsize',this[this.selectedIndex].value) ">
<option selected="selected" value="1">1</option>
<option value="2">2</option>
</select>
<select id="Select1" onchange="formatfont(edit,'fontname',this[this.selectedIndex].value) ">
<option selected="selected" value="宋体">宋体</option>
<option value="黑体">黑体</option>
</select>
<iframe name="edit" width="300" height="200" frameborder=1 onblur="chang()"></iframe>
<input id="Button1" type="button" value="粗体" onclick="format(edit,'cut','')" />
<input id="Button3" type="button" value="头像" onclick="face(1)" />
<input id="WebEditor1" runat="server" name="WebEditor1" type="hidden" value="" />
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="提交" />
<script>
edit.document.designMode="on";
function formatfont(idEdit,what,font)
{idEdit.focus();
idEdit.document.execCommand(what,false,font)
}
function format(idEdit,what)
{idEdit.focus();
idEdit.document.execCommand(what,false,null)
}
function chang()
{
document.getElementById('WebEditor1').value = edit.document.body.innerHTML;
}
function face(i)
{
edit.document.body.innerHTML+="<img src='face/emot"+i+".gif' />"
}
</script>
</div>
</form>
</body>
</html>
给你个简单例子
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<select id="Select2" onchange="formatfont(edit,'fontsize',this[this.selectedIndex].value) ">
<option selected="selected" value="1">1</option>
<option value="2">2</option>
</select>
<select id="Select1" onchange="formatfont(edit,'fontname',this[this.selectedIndex].value) ">
<option selected="selected" value="宋体">宋体</option>
<option value="黑体">黑体</option>
</select>
<iframe name="edit" width="300" height="200" frameborder=1 onblur="chang()"></iframe>
<input id="Button1" type="button" value="粗体" onclick="format(edit,'cut','')" />
<input id="Button3" type="button" value="头像" onclick="face(1)" />
<input id="WebEditor1" runat="server" name="WebEditor1" type="hidden" value="" />
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="提交" />
<script>
edit.document.designMode="on";
function formatfont(idEdit,what,font)
{idEdit.focus();
idEdit.document.execCommand(what,false,font)
}
function format(idEdit,what)
{idEdit.focus();
idEdit.document.execCommand(what,false,null)
}
function chang()
{
document.getElementById('WebEditor1').value = edit.document.body.innerHTML;
}
function face(i)
{
edit.document.body.innerHTML+="<img src='face/emot"+i+".gif' />"
}
</script>
</div>
</form>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
做不到
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |