如何使用我自己的WYSIWYG编辑器插入图像

时间:2015-02-20 20:40:41

标签: javascript image insert editor wysiwyg

我正在使用iframe构建我自己的WYSIWYG编辑器,我想找到一种简单插入图片的方法!我已经获得了Bold风格,Italic样式,H1和H2,使用JS:

    function bold(){
    editor.document.execCommand("bold", false, null)
    }

    function italic(){
    editor.document.execCommand("italic", false, null)

    }
    function h1(){
    editor.document.execCommand('formatBlock',false,'h1');
    }

    function h2(){
    editor.document.execCommand('formatBlock',false,'h2');
    }

效果很好,但是我正在努力与#34;插入图片按钮" 由于我对编码很新,我试着这样做:

function image(){
var image = prompt ("Paste or type a link", "http://")
editor.document.execCommand("createImage", false, image)

但这并不奏效。我的意图是用户可以从他们的计算机和/或互联网上传图像。请,如果有人知道如何插入图片......帮助!

很多感激之情!

2 个答案:

答案 0 :(得分:2)

您是否尝试使用相对链接格式化图像位置,其中@符号位于图像位置之前。您的代码和说明也无法解释他们是否在他们的机器上将图像上传到“我的文档”等位置,或者他们是否严格上传图像和http链接。

要使用Javascript和HTML从本地计算机上传,您可以签出此代码。您的问题是在编写自定义Javascript函数时经常出现的问题。

<script type='text/javascript'>

function main()
{
var inputFileToLoad = document.createElement("input");
inputFileToLoad.type = "file";
inputFileToLoad.id = "inputFileToLoad";
document.body.appendChild(inputFileToLoad);

var buttonLoadFile = document.createElement("button");
buttonLoadFile.onclick = loadImageFileAsURL;
buttonLoadFile.textContent = "Load Selected File";
document.body.appendChild(buttonLoadFile);
}

function loadImageFileAsURL()
{
var filesSelected = document.getElementById("inputFileToLoad").files;
if (filesSelected.length > 0)
{
    var fileToLoad = filesSelected[0];

    if (fileToLoad.type.match("image.*"))
    {
        var fileReader = new FileReader();
        fileReader.onload = function(fileLoadedEvent) 
        {
            var imageLoaded = document.createElement("img");
            imageLoaded.src = fileLoadedEvent.target.result;
            document.body.appendChild(imageLoaded);
        };
        fileReader.readAsDataURL(fileToLoad);
    }
}
}

main();

</script>

您可以在此处使用Javascript和HTML 5查看有关此图片上传问题的完整文章:https://thiscouldbebetter.wordpress.com/2012/12/20/uploading-and-displaying-an-image-from-a-file-using-html5-and-javascript/

答案 1 :(得分:0)

它应该是“ insertimage”而不是createImage。

function image(){var image = prompt ("Paste or type a link", "http://")editor.document.execCommand("insertimage", false, image)}