gpt4 book ai didi

javascript - Microsoft JScript 运行时错误 : Function expected

转载 作者:数据小太阳 更新时间:2023-10-29 05:06:26 24 4
gpt4 key购买 nike

我有以下 javascript 函数,其中包含一些 jquery。当我调用 createAppointmentConfirm 函数时,它尝试调用 SendMail(id) 函数但抛出错误:

"Microsoft JScript runtime error: Function expected"

Firefox 调试器抛出一个错误:

SendMail is not a function [Break On This Error] SendMail(data.Message);

这是代码。感谢您的帮助。

function createAppointmentConfirm(data) {
if (data.Error) {
alert(data.Message);
} else {
if ($('#sendMail').attr('checked') == 'checked') {
SendMail(data.Message);
}
RefreshAppointmentList();
}
}
function SendMail(id) {
$.ajax({
url: $('#sendMail').attr('title'),
data: { id: id },
type: "POST",
beforeSend: function () {
$('#sendingMail').dialog({ modal: true });
},
success: function (data) {
if (data.Error) {
alert(data.Message);
}
$('#sendingMail').dialog("close");
},
error: function () {
alert("Error sending mail");
$('#sendingMail').dialog("close");
}
});
}

最佳答案

说明

天哪,我喜欢这类问题,主要是因为我可以做一些研究和示例代码! :)

那么,首先,让我们解释一下您的代码发生了什么。

您的代码技术上没有任何问题,只是您遇到了命名冲突或者您尝试调用的函数超出了调用它们的范围。也可能是您链接了两个单独的 javascript 文件,其中一个文件在运行时未正确链接,可能是因为拼写错误。

这里有一些关于这些问题的文章:

Here's a debugging guide ,更准确地说,看一下标题下的底部运行时错误消息 副标题 xyz 未定义

xyz is not defined
This error occurs when your JavaScript code references a variable or object that does not exist. For example, you get the error with the following. (Note that the assigned variable is Test, whereas the variable used with the alert method is Text.)

var Test="This is a test; alert (Text);

Another common mistake is to use the wrong capitalization when referring to variables and objects. This code results in an error, even though you have spelled the variable name correctly:

var Test="This is a test; alert (test);

或者,正如他们没有提到的那样:您可能已经声明了一个函数和一个变量,它们都具有相同的名称。


解决方案

当您在 HTML 面板中按下“go”提交按钮时,JSFiddle 中的以下示例将触发错误/运行代码。

解决方案完全取决于您。您没有发布完整的代码,所以我真的无法帮助您找到确切的位置。

如果我猜一下,我会说您已经在某处声明了一个名为 SendMail 的变量,并且脚本假定您指的是那个变量。

我创建了一个在 JSFiddle 中发生命名冲突的示例。

Naming conflict example .

function SendMail(iId) {
//Send the mail information to a server page that will pass it along
//For this example, we'll pretend it returned an object

var oReturned = {
"Error": null,
"Message": "Mail has been sent."
};
SendDebugMessages(oReturned.Message);
}


function SendDebugMessage(msg){
$("#debug").prepend("<div>"+msg+"</div>");
}

在这里,我尝试调用 SendDebugMessage() 函数,
但是我调用的时候有点粗心,加了一个s就变成了SendDebugMessages()
哎呀。

它也可能发生在对象和变量上。您只是不知道它来自哪里。

当然,解决它所需要做的就是将它改回正确的函数名

Here's an example我认为代表你的问题,一个函数和一个共享相同名称的变量。

var SendDebugMessage = "something";

function SendDebugMessage(msg){
$("#debug").prepend("<div>"+msg+"</div>");
}

一种直接的解决方法:更改其中一个的名称。

Here's a working example, without any errors..

关于javascript - Microsoft JScript 运行时错误 : Function expected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8681700/

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