execCommand()插入图像在Internet Explorer中不起作用

时间:2015-09-04 12:31:26

标签: javascript jquery html internet-explorer

我正在尝试在一个可疑的div中插入图像。它的工作在chrome,firefox,歌剧和野生动物园。但不能在Internet Explorer中工作。我看到了这个post,它说insertImage在IE中有效。但我不知道为什么它不在这里工作。你能帮我吗?谢谢。

HTML:

<button id="btn-insert_image">image</button>

<div id="content" contenteditable="true">
  <p>How does it work? Just put your image size after our URL and you'll get a placeholder.</p>
</div>

JS:

$(document).ready(function() {
  $('#btn-insert_image').click(function() {
    document.execCommand('insertImage', false, 'http://placehold.it/350x150');
  });
});

jsfiddle

0 个答案:

没有答案