我是一个新的JavaScript程序员,但我遇到了这个问题:

Uncaught ReferenceError: saluta is not defined
    at HTMLButtonElement.onclick ((index):33)


在此代码上:

<button onclick="saluta()" id = "btn_sa">LOGIN</button>


这是函数:

function saluta(){
            var username = document.getElementById("Name").value;
            var password = document.getElementById("Password").value;
            var blocco = $("<div></br>Ciao </div>");
            if(password === "errata"){
                $(blocco).append(x);
                blocco.appendTo(document.body);
                document.getElementById("btn_sa").disabled = true;
                }else{
                $(blocco).css({
                    "color" : "red"
                    "font-size" : "10px"
                    });
                $(blocco).append("Password Errata");
                blocco.appendTo(document.body);
                }
            }


我该如何解决?我在这个论坛上发现了很多有同样问题的人,但我无法解决!
对不起,如果我的英语不太好

最佳答案

您的代码中包含错误

"color" : "red"


在行尾缺少,

08-25 16:27