JS 实现 startWith endWith函数
Posted 君临
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 实现 startWith endWith函数相关的知识,希望对你有一定的参考价值。
String.prototype.EndWith = function(s) { if (s == null || s == "" || this.length == 0 || s.length > this.length) return false; if (this.substring(this.length - s.length) == s) return true; else return false; return true; } String.prototype.StartWith = function(s) { if (s == null || s == "" || this.length == 0 || s.length > this.length) return false; if (this.substr(0, s.length) == s) return true; else return false; return true; }
以上是关于JS 实现 startWith endWith函数的主要内容,如果未能解决你的问题,请参考以下文章