1

打开一个包含一个 FCKeditor 窗口的网页后,我得到了这个实例:

i = FCKeditorAPI.GetInstance( "txtText" )

这行得通。我也被允许:

i.GetHTML() #=> <div class=".... etc., correct output

但是尝试的时候

i.SetHTML( "<h1>Quux</h1>" )

我得到:

[Exception... "Security error" code: "1000" nsresult: "0x805303e8 (NS_ERROR_DOM_... etc. ]

我有一种不确定的感觉,在过去,我能够使用 SetHTML() 更改 FCKeditor 窗口的内容,但我不完全确定。该怎么办?

作为对评论的回应,我的 HTML 是

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
<meta http-equiv="Content-language" content="cs" />
<meta http-equiv="expires" content="-1" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="private" />
<title>Foo | Bar | WebMaker | FOO.CZ</title>
<style type="text/css" media="screen">/*<![CDATA[*/@import url(http://webmaker.ooo.cz/_design/style.css);/*]]>*/</style>
<script type="text/javascript" src="http://webmaker.ooo.cz/common.js"></script>
</head>

<body>
<div id="header">
        <span><a href="http://webmaker.ooo.cz/logout.aspx">Logout</strong></span>
</div>
    <div id="main">

        <div id="content">
            <div id="tabmenu">

            </div><!-- /tabmenu -->
            <dif id="tabcontent">
              <form name="_ctl2" method="post" action="detail.aspx?article=14599" id="_ctl2">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"     value="/wEPDwULLTE2MTEzz0iZG9.....reallllly..looong...strin......6qKb5or30J5DCLKTCaFR/xc8TPHb9A=" />

<script type="text/javascript">
  <!--
      var theForm = document.forms['_ctl2'];
      if (!theForm) {
          theForm = document._ctl2;
      }
      function __doPostBack(eventTarget, eventArgument) {
          if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
              theForm.__EVENTTARGET.value = eventTarget;
              theForm.__EVENTARGUMENT.value = eventArgument;
              theForm.submit();
          }
      }
   // -->
</script>

<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWEQ...vsyXR4=" />
    <div class="data">
    <fieldset>
<legend>Text článku</legend>

<div><input type="hidden" id="txtText" name="txtText" value="FCK editor window contents here." /><input type="hidden" id="txtText___Config" value="HtmlEncodeOutput=true" /><iframe id="txtText___Frame" src="http://webmaker.ooo.cz/_wysiwyg/editor/fckeditor.html?InstanceName=txtText&amp;Toolbar=WebMaker" width="100%" height="400px" frameborder="no" scrolling="no"></iframe></div>  
<input type="button" onclick="GetWordsCount('txtText___Frame')" value="Zobrazit počet slov v článku" />
    </fieldset>

    <!-- There are some more fieldsets here and a submit button. -->

                  </div><!-- .data -->
              </form>
            </div><!-- tabcontent -->
</div><!-- /main -->
</body>
</html>
4

3 回答 3

1

很确定这是一些跨域问题,您可能认为自己在同一个域上运行,但实际上并非如此。我必须检查它运行的实际页面才能真正为您提供帮助,但尝试使用相对文件路径(可选从根目录)加载所有相关的 fckeditor 文件,并且永远不要包含实际域,这将阻止很多一般的麻烦(例如,否则可能发生的情况是您在 example.com 但从 www.example.com 加载文件或类似问题)。

奇怪的是,你也不应该能够读取文件,但触发的错误是关于几乎总是跨域问题的无特权操作(或一些非常棘手的跨脚本上下文问题,但这些大多只有在你开发插件)。

于 2013-06-26T22:09:25.927 回答
1

如果您的 javascript 来自“ http://webmaker.ooo.cz/ ...”,那么如果您在不同的子域下浏览网站而不是从中提取 javascript,那么您可能会遇到域问题. 我不确定是否可以修复,也不确定这一定是问题所在。只是一种可能。我建议尝试将您正在使用的 javascript 与 html 一起放在页面中,以确保代码本身确实有效。

于 2013-07-02T17:06:20.327 回答
1

FCKeditor 的SetHTML方法依赖于document.write调用来替换编辑控件中的内容。不幸的是document.write,不能在 Firefox 的 Web 控制台中工作。

这是一个已知错误:在 Scratchpad 窗口中使用 document.write 会在 Web 控制台中显示“未定义的安全错误”

我知道错误说 Scratchpad 并且错误消息不同,但这是同一个问题。请注意David Chan(Mozilla 安全研究员)的评论

这似乎是在沙箱中运行 WebConsole / ScratchPad 的另一个错误。

您可能记得过去能够做到这一点的原因是因为它可以在 FireBug 中运行,并且在 Chrome 中也可以运行。您过去在使用 FCKeditor 控件时可能使用过其中一种环境。

于 2013-07-02T17:25:15.437 回答