Insert an image into a tinymce editor

后端 未结 2 1496
慢半拍i
慢半拍i 2021-02-14 15:46

I have a tinymce text box on my html page. Under this text box I have a table with my file system in which I can navigate to locate my images. I would like to be able to click o

相关标签:
2条回答
  • 2021-02-14 16:05

    The fiddle from user2314737 is broken. So I combine with Fei Hap Lee's solution to have working one.

            tinymce.activeEditor.insertContent('<img alt="Smiley face" height="42" width="42" src="' + sr + '"/>');
    

    fiddle

    0 讨论(0)
  • 2021-02-14 16:10

    I've used the command

    tinyMCE.execCommand('mceInsertContent', false, '<img alt="Smiley face" height="42" width="42" src="' + sr + '"/>');
    

    to insert the image in tinyMCE after extracting the URL from the image's src.

    Note that you need to pass the CSS style of the image to tinyMCE in the command.

    EDIT: for Tiny MCE 4.x, the insert image code can be simplified to: tinymce.activeEditor.insertContent('<img alt="Smiley face" height="42" width="42" src="' + sr + '"/>');

    Here's the demo.

    0 讨论(0)
提交回复
热议问题