是否可以在文本区域显示粗体和非粗体文本

Is it possible to display bold and non-bold text in a textarea?

本文关键字:文本 显示 区域 是否      更新时间:2023-09-26

我不想要这个:

<textarea>The <b>color</b> is black.</textarea>

我希望文本"颜色"以粗体显示,而不是<b></b>

这可能吗?

不能单独设置文本区域的内容样式,必须使用<div>s或类似的东西。这可能是的副本

设置<text区域>?

你想要这样的东西吗:?

http://jsfiddle.net/mekwall/XNkDx/

$('.editable').each(function(){
    this.contentEditable = true;
});

这允许您编辑div的内容,它看起来仍然像一个文本区域,

大胆的作品

对于这些情况,请避免使用纯文本区域,使用wysiwyg html编辑器。

以下是一些想法:

ckeditor

niceditor