gpt4 book ai didi

Javascript : how to insert tags around a text selection?

转载 作者:数据小太阳 更新时间:2023-10-29 05:03:45 25 4
gpt4 key购买 nike

我想创建一个小的 WYSIWYG HTML 文本编辑器,带有一个内容可编辑的 div。

为此,我使用 window.getSelection() 检索所选文本,当我单击按钮(粗体按钮)时,我执行一个函数以在所选文本周围添加粗体标记。

但我对添加粗体标记的 javascript 代码(没有 JQuery)一无所知。

这里是我的代码:

<input type="button" value="B" style="font-weight:bold;" onclick='add_tags("b");'>

<div id="container_contenteditable" class="container_contenteditable" contenteditable></div>

<script type="text/javascript">

function add_tags(tags)
{
container_contenteditable = document.getElementById("container_contenteditable");

//Retrieve the selected text :
sel = window.getSelection();
}

</script>

最佳答案

它实际上比你想象的要简单:

function add_tags(tags)
{
document.execCommand('bold');
}
<input type="button" value="B" style="font-weight:bold;" onclick='add_tags("b");'>

<div class="container_contenteditable" contenteditable style="border:1px solid; margin: 10px 0; height: 100px;"></div>

关于Javascript : how to insert tags around a text selection?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35105219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com