我想创建一个带有contenteditable div的WYSIWYG
HTML文本编辑器.
为此,我使用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>