Home  >  Article  >  Web Front-end  >  Use javascript to filter html strings (comment notation)_javascript skills

Use javascript to filter html strings (comment notation)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:29:421001browse
复制代码 代码如下:

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