정규 표현 식 html 태그 추출

function listTags(){
    str = document.getElementsByTagName("body")[0].outerHTML;
    regExp = /<([\w]+)(?:\s+|\s+[^>\/]+)>/gi;
    while (null != (temp = regExp.exec(str))) {
        alert("<" + temp.index + "," + temp.lastIndex + ">
L:'" + RegExp.leftContext + "';
R:'" + RegExp.rightContext + "';
m:'" + RegExp.lastMatch + "';
tag:" + RegExp.$1); } }

좋은 웹페이지 즐겨찾기