Heim >Web-Frontend >js-Tutorial >javascript自定义startWith()和endWith()的两种方法_javascript技巧

javascript自定义startWith()和endWith()的两种方法_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:16:121734Durchsuche

一、采用正则表达式实现startWith、endWith效果函数

复制代码 代码如下:

String.prototype.startWith=function(str){
var reg=new RegExp("^"+str);
return reg.test(this);
}
//测试ok,直接使用str.endWith("abc")方式调用即可
String.prototype.endWith=function(str){
var reg=new RegExp(str+"$");
return reg.test(this);
}

二、JavaScript实现startWith、endWith效果函数
复制代码 代码如下:


//以下是使用示例
var url = location.href;
if (url.startWith('http://www.jb51.net'))
{
//如果当前url是以 http://www.jb51.net/ 开头
}
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn