在调用trim()的JS方法上面加入如下JS代码:
String.prototype.trim = function(){
return this.replace(/(^/s*)|(/s*$)/g, "");
}
就可以像JAVA中使用trim()方法了:
if(document.forms[0].aa.value.trim()==""){
}
本文出自:冯立彬的博客
在调用trim()的JS方法上面加入如下JS代码:
String.prototype.trim = function(){
return this.replace(/(^/s*)|(/s*$)/g, "");
}
就可以像JAVA中使用trim()方法了:
if(document.forms[0].aa.value.trim()==""){
}
本文出自:冯立彬的博客