这就是我将图像附加到帖子的方式。它显示在除 IE 之外的所有浏览器中
<script type="text/javascript">
image = '<img src="http://forum.site.com/.../<?php echo $_SESSION['user_id']; ?>/question_reply_images/<?php echo $image_name; ?>" alt="<?php echo $alt; ?>" />';
document.getElementById('editor1').innerHTML += '<span style="width:100%; float:left;"' + image + '</span>';
window.location = '#reply_textbox';
</script>
这是一个过程:用户在文本区域中写入文本(使用所见即所得编辑器——CKeditor)然后将选择一个文件并上传它。然后将其附加到文本区域的末尾。这甚至不会显示在 IE 中。图片正在上传,但不会显示在文本区域中。