0

我试图这样做:

$("iframe.cke_dialog_ui_input_file").contents()

但它返回:

< #document(gquery, error getting the element string representation: (TypeError) @com.google.gwt.dom.client.DOMImplMozilla::toString(Lcom/google/gwt/dom/client/Element;)([JavaScript object(8570)]): doc is null)/>

但文件不为空!

请帮我解决这个问题:(

UPD。HTML 代码:

<iframe id="cke_107_fileInput" class="cke_dialog_ui_input_file" frameborder="0" src="javascript:void(0)" title="Upload Image" role="presentation" allowtransparency="0">
<html lang="en" dir="ltr">
<head>
<body style="margin: 0; overflow: hidden; background: transparent;">
<form lang="en" action="gui/ckeditor/FileUploadServlet?CKEditor=gwt-uid-7&CKEditorFuncNum=0&langCode=en" dir="ltr" method="POST" enctype="multipart/form-data">
<label id="cke_106_label" style="display:none" for="cke_107_fileInput_input">Upload Image</label>
<input id="cke_107_fileInput_input" type="file" size="38" name="upload" aria-labelledby="cke_106_label">
</form>
<script>
window.parent.CKEDITOR.tools.callFunction(90);window.onbeforeunload = function() {window.parent.CKEDITOR.tools.callFunction(91)}
</script>
</body>
</html>
</iframe>
4

2 回答 2

2

首先像现有的 cod 一样使用 javascript 获取 iframe 元素并将其存储到 GWT 的 iframe 中

IFrameElement iframe = (IFrameElement) element;

现在使用 iframe 获取内容

iframe.getContentDocument().getBody().getInnerText();

希望它可以帮助您获得价值。

于 2018-09-24T06:57:31.433 回答
1

contents()方法返回HTMLDocument,因此通常您必须找到<body>来操作它。

$("iframe.cke_dialog_ui_input_file").contents().find("body");

一个常见的错误是在 iframe 完全加载之前查询它,因此使用Timer,Scheduler或编写延迟代码GQuery.delay()。例如:

$("iframe.cke_dialog_ui_input_file")
  .delay(100, 
    lazy()
      .contents().find("body")
        .css("font-name", "verdana")
        .css("font-size", "x-small")
    .done());
于 2013-10-13T15:57:18.560 回答