function DeleteHtmlFromStartToEnd(str, begin, end) {
str = str.replace(begin end, "");
if (str.indexOf(begin) == -1) {//没找到
return str;
}
var substr = str.substring(str.indexOf(begin) begin.length, str.indexOf(end));
str = str.replace(substr, "");
return DeleteHtmlFromStartToEnd(str, begin, end);
}
var str = '000001234567111111890222228908903';
var result = DeleteHtmlFromStartToEnd(str, '', '');
alert(result);
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn