Jquery构造startWith和endWith⽅法javascript中字符串处理并没有 StartWith 和 EndWith 这俩个⽅法,这⾥说的是⼿动构建这俩个⽅法.
JQuery 也是没有这俩个⽅法的,⽽是利⽤其丰富的选择器来达到此效果.
/**
* JQuery 构造StartWith⽅法
*/
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;
};
/**
* JQuery 构造endWith⽅法
*/
dWith = function(s) {
jquery字符串截取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;
};

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。