我在 JavaScript 中创建了一个通过 document.execcommand 插入图像的函数:
function images() {
var img = prompt ("Enter the image link", "");
if (img != null) {
lol.document.execCommand("insertImage", false, img);
}
};
即使在实时服务器上,图像也没有出现。它显示损坏的图像图标。所有浏览器都支持此代码。我的其他 execcommand 函数运行良好。