document.execCommand中的InsertImage没有出现

时间:2012-11-04 05:33:40

标签: javascript

我创建了一个函数,通过JavaScript中的document.execcommand插入图像:

function images() {
    var img = prompt ("Enter the image link", "");
    if (img != null) {
    lol.document.execCommand("insertImage", false, img);
    }
    };

即使在实时服务器上,图像也不会出现。它显示了损坏的图像图标。所有浏览器都支持此代码。我的其他execcommand函数运行良好。

0 个答案:

没有答案