/**
* startWith 메소드 확장
* @param str
* @return
*/
String.prototype. startWith=function(str){
if(str==null||str==""||this.length==0||str.length>this.length)
false를 반환합니다.
if(this.substr(0,str.length)==str)
true를 반환합니다.
그렇지 않으면
false를 반환합니다.
참을 반환합니다.
};
/**
* 확장에 메서드 포함
* @param 항목
* @return
*/
Array.prototype.contains = function(item){
return RegExp("\b" item "\b").test( 이것);
};
/**
* IE는 indexOf 메소드를 지원하지 않습니다. IE에 indexOf 메소드를 추가하세요
*/
Array.prototype.indexOf = function(val){
var value = this;
for(var i =0; i if(value[i] == val) return i;
}
return -1;
};