本文介绍了将项目符号添加到文本区域?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法向 HTML 文本区域添加项目符号?
Is there a way to add bullet points to an HTML textarea?
我想添加一个简单的功能,其中为文本区域中的每一行添加一个项目符号(类似于列表项目符号).
I want to add a simple feature where a bullet point is added for every line in a text area (similar to a list bullet points).
推荐答案
你不能这样做,但还有另一种方法.删除文本区域.
You can't do that but there is another way. delete the textarea.
'<section id="textarea" contenteditable="true">
<ul>
<li>List item here</li>
<li>List item here</li>
<li>List item here</li>
<li>List item here</li>
</ul>
</section>'
这篇关于将项目符号添加到文本区域?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!