主题: 为什么...代码相同...在chrome和ie上显示的效果却不一样 |
作者: extinction, 发布日期: 2012-12-21 16:00:45, 浏览数: 3336 |
ie感觉好像我写的代码都不管用似的……(上图是chrome的,下图是ie的)
<div id="addWindow" class="mini-window" title="添加通知" style="width:500px;height:465px;"showmodal="true"
标题:<br />
</div>
var editor = null; setTimeout(function () { var editorId = "ke"; editor = KindEditor.create('#' + editorId, { resizeType: 1, //uploadJson: 'kindeditor/upload_json.ashx', //fileManagerJson: 'kindeditor/file_manager_json.ashx', resizeType:0, allowPreviewEmoticons: false, allowImageUpload: true, items: [ 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist', '|', 'emoticons', 'image', 'link'] }); }, 1);
|
作者: Roddy, 发布日期: 2012-12-21 22:11:01 |
可能原因只有2个: 1)浏览器有缓存。 2)是不同代码。 |
回复 |