GWT:在Chrome中显示硬盘空间的问题

时间:2018-10-09 09:43:30

标签: javascript google-chrome iframe gwt

基本上,我有一个iframe,我在其中放置了一些来自服务器的内容,当这些内容包含硬盘空间时,Chrome会将其删除。

所以这样的内容:

Let's do   it!

Chrome显示:

Let's do it!

不是这样的(我想显示更多的空格)

 Let's do   it!

这是将内容放入iFrame的代码:

private native void addContentToFrame(IFrameElement iframe, String contentHtml)
/*-{
    var doc = iframe.document;
    if (iframe.contentDocument) {
        doc = iframe.contentDocument;
    } else if (iframe.contentWindow) {
        doc = iframe.contentWindow.document;
    }
    doc.open();
    doc.writeln(contentHtml);
    doc.close();
}-*/;

0 个答案:

没有答案