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