str.trim is not a function
判断是否为空的方法
jQuery 版本3.5
function isEmpty(str) {
if(str == null ||str.trim()==""){
return true;
}
return false;
}
运行时 前端 HTML报错
login.jsp:65 Uncaught TypeError: str.trim is not a function
修改后:
function isEmpty(str) {
if(str == null ||$.trim(str)==""){
return true;
}
return false;
}
将str.trim()==“” 改成$.trim(str)=="" 即可
本文来自博客园,作者:大星星不见了,转载请注明原文链接:https://www.cnblogs.com/dxxbjl/p/15120392.html