gpt4 book ai didi

javascript - FCKeditor JavaScript API 抛出 "Security error"代码 : "1000" when I attempt SetHTML()

转载 作者:行者123 更新时间:2023-11-30 13:01:42 31 4
gpt4 key购买 nike

打开一个只有一个 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>

最佳答案

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

这是一个已知错误:Using document.write inside Scratchpad window brings up 'Security error undefined' in Web Console

我知道错误说 Scratchpad 和错误消息不同,但这是同一个问题。备注this comment来自 David Chan(Mozilla 安全研究员):

This appears to be another bug from running WebConsole / ScratchPad in a sandbox.

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

关于javascript - FCKeditor JavaScript API 抛出 "Security error"代码 : "1000" when I attempt SetHTML(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17203731/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com