java script js Trim() trim() 不能用解决办法
程序员文章站
2022-03-17 08:58:55
...
把
换成
if (txtid.Trim() == "") {
换成
if (txtid.replace(/(^\s*)|(\s*$)/g,'') == "") {