이 기사의 예에서는 JavaScript가 접두사와 접미사가 공백인지 여부를 결정하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
// Js 判断后缀 String.prototype.endsWith = function(suffix) { return this.indexOf(suffix,this.length - suffix.length)!==-1; }; // Js 判断前缀 if (typeof String.prototype.startsWith != 'function') { // see below for better implementation! String.prototype.startsWith = function (str){ return this.indexOf(str) == 0; }; } // Js 判空(含全部是空格) String.prototype.IsNullEmptyOrSpace = function() { if (this== null) return true; return this.replace(/s/g, '').length == 0; };
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.