在 Textarea 中渲染 HTML
与文本区域不同,内容可编辑 div 将其内容解释为 HTML,允许您在其中渲染 HTML 标签。要使用内容可编辑的 div,请按照以下步骤操作:
包含以下 HTML 代码:
<div contenteditable="true"></div>
根据需要添加 CSS 样式。例如:
div.editable { width: 300px; height: 200px; border: 1px solid #ccc; padding: 5px; }
内容可编辑 div 现在可用于呈现 HTML 标签,例如 、、 和 。一个>。例如:
<div contenteditable="true"> This is the first line.<br> See, how the text fits here, also if<br> there is a <strong>linebreak</strong> at the end?<br> It works nicely.<br> <br> <span>
jQuery 插件替代
如果您更喜欢使用 jQuery 插件,请考虑以下选项:
这些插件提供了附加功能和自定义选项在文本区域内渲染 HTML。
以上是如何在内容可编辑 Div 中渲染 HTML(或使用 jQuery 插件)?的详细内容。更多信息请关注PHP中文网其他相关文章!