3

我问这个是因为我自己完全不知所措,需要一双新的眼睛。

在提交连接的 HTML 表单时成功调用以下 JavaScript 函数。该函数启动并且前两个if语句运行(如果它们返回则停止提交false)。

然后,第一个测试alert“之前”出现,然后表单提交,完全错过了其余的功能。在测试时,我将最后一行更改为 returnfalse以便无论发生什么函数都应该返回false,但表单仍然提交。

function validateForm(form)
{
    // declare variables linked to the form
    var _isbn = auto.isbn.value;
    var _idisplay = auto.isbn.title;
    var _iref = "1234567890X";
    // call empty string function
    if (EmptyString(_isbn,_idisplay)==false) return false;
    // call check against reference function
    if (AgainstRef(_isbn,_iref,_idisplay)==false) return false;
    // call check length function
    alert("before");///test alert

    ////// FORM SUBMITS HERE?!? /////////////

    if (AutoLength(_isbn)==false) return false;
    alert("after");///test alert
    // if all conditions have been met allow the form to be submitted
    return true;
}

编辑:这AutoLength看起来像:

function AutoLength(_isbn) {
    if (_isbn.length == 13) {
        return true; {
    else {
        if (_isbn.length == 10) {
            return true; {
        else {
            alert("You have not entered a valid ISBN10 or ISBN13. Please correct and try again.");
            return false;
        }
    }
4

2 回答 2

1

您的AutoLength. 目前,它看起来像这样:

function AutoLength(_isbn) {
    if (_isbn.length == 13) {
        return true; { // <------ incorrect brace
    else {
        if (_isbn.length == 10) {
            return true; { // <------ incorrect brace
        else {
            alert("You have not entered a valid ISBN10 or ISBN13. Please correct and try again.");
            return false;
        }
    }

看看它如何不关闭所有的块?那是因为你在两个地方使用了错误的大括号,并且忘记了关闭函数。

您可以像这样重写函数:

function AutoLength(_isbn) {
    return _isbn.length === 13  || _isbn.length === 10;
}

如果您一心想要使用alert,您可以在内部执行此操作validateForm(尽管我会尝试找到一种更用户友好的方式来显示错误消息)。

将来,当您尝试调试代码时,您可以使用tryandcatch来“捕捉”Errors它们发生的情况,如下所示:

try {
    if (false === AutoLength(_isbn)) {
        return false;
    }
} catch (e) {
    alert('AutoLength threw an error: '+e.message);
}
于 2012-01-14T13:05:59.283 回答
0

如果函数的执行因运行时错误而终止,则提交表单。因此,请查看脚本控制台日志以获取错误消息。

于 2012-01-14T12:43:59.967 回答