在jQuery验证检查的这一部分需要帮助:

  if ($(this).val() == badTumblrInput && $(this).val() != "0")


我只需要允许单个字符零(“ 0”)在表达式中有效。

此代码允许任何带有零(“ 0”)的内容都有效。

感谢新手!

最佳答案

if (this.value == '0') {
    //the value was zero, the character zero, and only the character zero
}


FIDDLE

关于jquery - 如何检查输入验证是否等于“0”且只有“0”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11977676/

10-12 05:03