function isFilled(field) {
if (field.value.replace(' ','').length==0) return false;
var placeholder=field.placeholder || field.getAttribute('placeholder');
return (field.value !=placeholder);
}
其中 if(field.value.replace(' ','').length==0) return false;這一句怎麼理解?
replace(' ','')這個替換函數怎麼理解?
謝謝回答問題的老師。
將空格替換成空字符。也就是去掉空格的意思。