gpt4 book ai didi

JavaScript 弹出窗口 "The Action Is Insecure"

转载 作者:行者123 更新时间:2023-11-28 08:06:32 25 4
gpt4 key购买 nike

我正在用 JavaScript 创建一个名为 List Maker 的 Web 应用程序,其中一个功能是能够从 JSON 导出/导入数据。对于导出和导入 JSON 数据,将显示一个弹出窗口,允许用户复制/输入数据。

但是,我在显示弹出窗口时遇到了问题,因为我不断收到此错误:

[Exception... "The operation is insecure."  code: "18" nsresult: "0x80530012 (SecurityError)"  location: "<unknown>"]

这是显示弹出窗口的函数:

function JLShowExportDialog()
{
var w = window.open('', '', 'width=400,height=400,scrollbars');

w.document.write(document.getElementById("exporttojson").innerHTML);
w.document.body.style.fontFamily = "sans-serif";
w.document.getElementById("jsontext").innerHTML = GetJSONFromList();
w.document.title = "Export List To JSON";
w.document.close();
}

还有exporttojson分区:

<div id="exporttojson" style="display: none">
<h1>Export to JSON</h1>
<p>The text in the box below contains the JSON.</p>
<textarea id="jsontext">
</textarea>
</div>

代码为GetJSONFromList()功能:

function GetJSONFromList()
{
return JSON.stringify(LMList);
}

最佳答案

应该是这样吗?

function GetJSONFromList(LMList)
{
return JSON.stringify(LMList);
}

关于JavaScript 弹出窗口 "The Action Is Insecure",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24736933/

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