Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个textareaahtml form并且我想要一个按钮来添加一个大黑点字符 (•)(这叫做子弹吗?)到这个textarea. 有可能javascript吗?
textarea
html form
javascript
它也必须是一个UTF8字符。
UTF8
谢谢你的帮助!
只需访问元素并将其附加到值。
<input type="button" onclick="document.getElementById('myTextArea').value += '•'" value="Add •">
观看现场演示。
为了简单起见,我没有编写不显眼的 JS。对于生产系统,您应该这样做。
它还需要是 UTF8 字符。
浏览器通常使用它们收到页面的编码提交表单。如果您希望返回 UTF-8 数据,请将您的页面作为 UTF-8 提供。
您可以使用 html 实体作为•
•