gpt4 book ai didi

javascript - 在 contenteditable div 中为 div 启用调整大小

转载 作者:行者123 更新时间:2023-12-05 01:47:03 24 4
gpt4 key购买 nike

我有一个将 contenteditable 设置为 true 的 div。现在我想在 contenteditable div 中为 div 启用调整大小。

在我的示例中,html 插入工作正常,但如何使插入的 html div 可调整大小?

代码:

function inserthtml() {
var sel = document.selection;
if (sel) {
var textRange = sel.createRange();
document.execCommand('inserthtml', false, "<div><img src='https://www.google.com/images/srpr/logo11w.png' height='42' width='42'></div>");
textRange.collapse(false);
textRange.select();
} else {
document.execCommand('inserthtml', false, "<div><img src='https://www.google.com/images/srpr/logo11w.png' height='42' width='42'></div>");
}
}

fiddle :http://jsfiddle.net/q6q05f1b/

最佳答案

#editme {
resize: vertical;
overflow: auto;
}
<div id="editme" contenteditable="true">Click somewhere in here and press the 'insert html' button</div>

关于javascript - 在 contenteditable div 中为 div 启用调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31719486/

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