Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://pastebin.com/8n9jyMb3
有代码。当我提交表单时,它不会运行 validate() 函数。我已经用一些不同的代码尝试了这个确切的东西,它可以工作,但由于某种奇怪的原因,它现在不能工作。请帮忙。这个幽灵错误正在杀死我。
你有额外的右括号。代替
else if(field.length) < 3)
应该
else if(field.length < 3)
`else if(field.length) < 3) `
语法不正确,请更正此并删除额外的右括号 替换上面的这个