gpt4 book ai didi

if 语句中的 JavaScript 错误 "Function expected"

转载 作者:行者123 更新时间:2023-12-02 20:11:42 25 4
gpt4 key购买 nike

当我单击页面上的按钮时,我收到一条“预期功能”错误消息。错误出现在第一个 if 语句上。

我有以下代码:

Response_Error: function (xhr, textStatus, errorThrown) {
if (textStatus && (textStatus == 'error' || textStatus == 'parsererror')) textStatus = '';
if (errorThrown && errorThrown == 'error') errorThrown = '';
var html = '';
try {
html = (textStatus ? 'textStatus: ' + textStatus + '<br/>' : '') +
(errorThrown ? 'errorThrown: ' + errorThrown + '<br/>' + '<br/>' : '') +
(textStatus || errorThrown ? '' : '<hr/>') + xhr.responseText;
}
catch (err) {
document.write(err.description + '<br/>' + xhr.responseText);
}

if (Page._lastModalDialog) {
try {
if (false) { // HACK: change this to true to put contents on a textarea
html = html.replace('<', '&lt;').replace('>', '&gt;');
html = "<form><textarea rows='40' cols='120'>" + html + "</textarea></form>";
}
$(Page._lastModalDialog).html(html).fadeIn("slow");
}
catch (err) {
document.write(err.description + '<br/>' + html);
}
Page._lastModalDialog = null;
}
else {
document.write(html);
}
},

最佳答案

您可以从 chrome 检查器控制台或 fire bug 确定出现错误的行,我认为它与在需要函数时提供变量有关。

关于if 语句中的 JavaScript 错误 "Function expected",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6878154/

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