innerText로 요소를 얻는 방법


답변:


148

당신은 손으로 통과해야합니다.

var aTags = document.getElementsByTagName("a");
var searchText = "SearchingText";
var found;

for (var i = 0; i < aTags.length; i++) {
  if (aTags[i].textContent == searchText) {
    found = aTags[i];
    break;
  }
}

// Use `found`.

1
@AutoSponge 실제로 innerHTML이 표준입니다. innerText가 FF에서 작동하지 않음
AnaMaria

이 예제에서 textContent가 원하는 것입니다. 감사합니다, 여러분 :)
8월 Lilleaas

1
@AugustLilleaas, 무슨 일이야 i < il? 그게 뭐야?
David Sawyer

1
<span> <span> 검색 텍스트 </ span> </ span>이있는 경우이 메소드는 내부 범위 대신 외부 범위를 반환 할 수 있습니다.
Kevin Wheeler

5
아니,이 질문은 자바 스크립트와 HTML이 아닌 자바에 관한 것입니다
8월 Lilleaas

160

이것을 달성하기 위해 xpath를 사용할 수 있습니다

var xpath = "//a[text()='SearchingText']";
var matchingElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;

이 xpath를 사용하여 일부 텍스트가 포함 된 요소를 검색 할 수도 있습니다.

var xpath = "//a[contains(text(),'Searching')]";

7
이것이 최고의 답변이되어야합니다. XPath는 속성
값별

1
문제는이 속임수에 대한 성능 불이익은 무엇입니까
vsync

2
@vsync 나는 xpath가 여기에있는 다른 모든 답변과 같이 자바 스크립트로 실행되는 대신 브라우저 제공 알고리즘에 의해 실행되므로 다른 답변보다 빠를 것이라고 생각합니다. 그래도 흥미로운 질문입니다.
carlin.scott

1
IE 브라우저 에서 Document.evaluate() 보이지 않는 것 같습니다
vsync

1
왜 그런지 모르겠지만 어떻게 든 var xpath = "//a[text()='SearchingText']"; 작동하지 않지만 var xpath = "//a[contains(text(),'Searching')]"; 작동합니다. \ '\'와 같이 이스케이프 된 문자를 알고 있어야합니다.
Joey Cho

38

현재 가장 현대적인 구문을 사용하면 다음과 같이 매우 깔끔하게 수행 할 수 있습니다.

for (const a of document.querySelectorAll("a")) {
  if (a.textContent.includes("your search term")) {
    console.log(a.textContent)
  }
}

또는 별도의 필터로 :

[...document.querySelectorAll("a")]
   .filter(a => a.textContent.includes("your search term"))
   .forEach(a => console.log(a.textContent))

당연히 레거시 브라우저는이를 처리하지 않지만 레거시 지원이 필요한 경우 트랜스 파일러를 사용할 수 있습니다.


<3 필터 접근
John Vandivier

36

jQuery : contains () Selector를 사용할 수 있습니다

var element = $( "a:contains('SearchingText')" );

나는 : Error: <![EX[["Tried to get element with id of \"%s\" but it is not present on the page","a:contains('SearchingText')"]]]> TAAL[1]"SearchingText"를 가진 요소를 가지고 있지만.
Rishabh Agrahari

15

function findByTextContent(needle, haystack, precise) {
  // needle: String, the string to be found within the elements.
  // haystack: String, a selector to be passed to document.querySelectorAll(),
  //           NodeList, Array - to be iterated over within the function:
  // precise: Boolean, true - searches for that precise string, surrounded by
  //                          word-breaks,
  //                   false - searches for the string occurring anywhere
  var elems;

  // no haystack we quit here, to avoid having to search
  // the entire document:
  if (!haystack) {
    return false;
  }
  // if haystack is a string, we pass it to document.querySelectorAll(),
  // and turn the results into an Array:
  else if ('string' == typeof haystack) {
    elems = [].slice.call(document.querySelectorAll(haystack), 0);
  }
  // if haystack has a length property, we convert it to an Array
  // (if it's already an array, this is pointless, but not harmful):
  else if (haystack.length) {
    elems = [].slice.call(haystack, 0);
  }

  // work out whether we're looking at innerText (IE), or textContent 
  // (in most other browsers)
  var textProp = 'textContent' in document ? 'textContent' : 'innerText',
    // creating a regex depending on whether we want a precise match, or not:
    reg = precise === true ? new RegExp('\\b' + needle + '\\b') : new RegExp(needle),
    // iterating over the elems array:
    found = elems.filter(function(el) {
      // returning the elements in which the text is, or includes,
      // the needle to be found:
      return reg.test(el[textProp]);
    });
  return found.length ? found : false;;
}


findByTextContent('link', document.querySelectorAll('li'), false).forEach(function(elem) {
  elem.style.fontSize = '2em';
});

findByTextContent('link3', 'a').forEach(function(elem) {
  elem.style.color = '#f90';
});
<ul>
  <li><a href="#">link1</a>
  </li>
  <li><a href="#">link2</a>
  </li>
  <li><a href="#">link3</a>
  </li>
  <li><a href="#">link4</a>
  </li>
  <li><a href="#">link5</a>
  </li>
</ul>

물론 다소 간단한 방법은 다음과 같습니다.

var textProp = 'textContent' in document ? 'textContent' : 'innerText';

// directly converting the found 'a' elements into an Array,
// then iterating over that array with Array.prototype.forEach():
[].slice.call(document.querySelectorAll('a'), 0).forEach(function(aEl) {
  // if the text of the aEl Node contains the text 'link1':
  if (aEl[textProp].indexOf('link1') > -1) {
    // we update its style:
    aEl.style.fontSize = '2em';
    aEl.style.color = '#f90';
  }
});
<ul>
  <li><a href="#">link1</a>
  </li>
  <li><a href="#">link2</a>
  </li>
  <li><a href="#">link3</a>
  </li>
  <li><a href="#">link4</a>
  </li>
  <li><a href="#">link5</a>
  </li>
</ul>

참고 문헌 :


14

기능적 접근. 일치하는 모든 요소의 배열을 반환하고 확인하는 동안 주위 공간을 잘라냅니다.

function getElementsByText(str, tag = 'a') {
  return Array.prototype.slice.call(document.getElementsByTagName(tag)).filter(el => el.textContent.trim() === str.trim());
}

용법

getElementsByText('Text here'); // second parameter is optional tag (default "a")

다른 태그 (예 : 스팬 또는 버튼)를 통해 보는 경우

getElementsByText('Text here', 'span');
getElementsByText('Text here', 'button');

기본 값 태그 = 'a'는 이전 브라우저의 경우 Babel이 필요합니다.


모든 하위 노드에 대한 결과도 포함되어 있기 때문에 올바르지 않습니다. 즉의 하위 노드에 a포함 된 경우 str- 결과에 el포함됩니다 getElementsByText. 그건 잘못이야
avalanche1 1

@ avalanche1 그것은 바람직하지 않은지 여부에 달려 있습니다. <span> </ span>과 같이 다른 태그로 싸여 있어도 텍스트로 선택해야 할 수도 있습니다.
Pawel

5

하위 문자열 을 다음 줄에 전달하면 됩니다.

외부 HTML

document.documentElement.outerHTML.includes('substring')

내부 HTML

document.documentElement.innerHTML.includes('substring')

이를 사용 하여 전체 문서 를 검색하고 검색어가 포함 된 태그를 검색 할 수 있습니다.

function get_elements_by_inner(word) {
    res = []
    elems = [...document.getElementsByTagName('a')];
    elems.forEach((elem) => { 
        if(elem.outerHTML.includes(word)) {
            res.push(elem)
        }
    })
    return(res)
}

사용법 :

이 페이지에서 "T3rm1"사용자는 몇 번이나 언급 되었습니까?

get_elements_by_inner("T3rm1").length

1

jQuery는 몇 번이나 언급됩니까?

get_elements_by_inner("jQuery").length

"Cybernetic"이라는 단어가 포함 된 모든 요소를 ​​가져옵니다.

get_elements_by_inner("Cybernetic")

여기에 이미지 설명을 입력하십시오


이것은 true 또는 false를 반환하지만 요소는 반환하지 않습니다.
T3rm1 2016

진리 조건을 사용하여 검색된 요소를 반복하고 해당 요소에서 필요한 것을 얻을 수 있습니다. 업데이트 된 답변을 참조하십시오.
Cybernetic

4

다른 구문에 비해 새로운 구문의 사용이 약간 짧다는 것을 알았습니다. 여기 내 제안이 있습니다.

const callback = element => element.innerHTML == 'My research'

const elements = Array.from(document.getElementsByTagName('a'))
// [a, a, a, ...]

const result = elements.filter(callback)

console.log(result)
// [a]

JSfiddle.net


2

필요한 경우 <= IE11에서 작동 하는 user1106925 의 필터 방법을 가져 오려면

스프레드 연산자를 다음과 같이 바꿀 수 있습니다.

[].slice.call(document.querySelectorAll("a"))

포함 통화 a.textContent.match("your search term")

꽤 깔끔하게 작동합니다.

[].slice.call(document.querySelectorAll("a"))
   .filter(a => a.textContent.match("your search term"))
   .forEach(a => console.log(a.textContent))

나는이 방법을 좋아한다. Array.from대신에 사용할 수도 있습니다 [].slice.call. 예를 들면 다음과 같습니다 Array.from(document.querySelectorAll('a'))
리처드

1

내부 텍스트로 얻을 수는 있지만 잘못된 방향으로 가고 있다고 생각합니다. 내부 문자열이 동적으로 생성됩니까? 그렇다면 텍스트를 넣을 때 태그에 클래스 또는 더 나은 ID를 부여 할 수 있습니다. 정적 인 경우 더 쉽습니다.


1

a TreeWalker를 사용 하여 DOM 노드를 살펴보고 텍스트가 포함 된 모든 텍스트 노드를 찾고 부모를 반환 할 수 있습니다.

const findNodeByContent = (text, root = document.body) => {
  const treeWalker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT);

  const nodeList = [];

  while (treeWalker.nextNode()) {
    const node = treeWalker.currentNode;

    if (node.nodeType === Node.TEXT_NODE && node.textContent.includes(text)) {
      nodeList.push(node.parentNode);
    }
  };

  return nodeList;
}

const result = findNodeByContent('SearchingText');

console.log(result);
<a ...>SearchingText</a>


1

이 작업을 수행합니다.
가 포함 된 노드의 배열을 반환합니다 text.

function get_nodes_containing_text(selector, text) {
    const elements = [...document.querySelectorAll(selector)];

    return elements.filter(
      (element) =>
        element.childNodes[0]
        && element.childNodes[0].nodeValue
        && RegExp(text, "u").test(element.childNodes[0].nodeValue.trim())
    );
  }

0

도움을 받으려면 좀 더 구체적이어야한다고 생각합니다.

  1. 이걸 어떻게 찾습니까? 자바 스크립트? PHP? 펄?
  2. 태그에 ID 속성을 적용 할 수 있습니까?

텍스트가 고유 한 경우 (또는 실제로는 아니지만 배열을 통해 실행해야하는 경우) 정규식을 실행하여 찾을 수 있습니다. PHP의 preg_match ()를 사용하면 효과가 있습니다.

Javascript를 사용 중이고 ID 속성을 삽입 할 수있는 경우 getElementById ( 'id')를 사용할 수 있습니다. 그런 다음 DOM을 통해 리턴 된 요소의 속성에 액세스 할 수 있습니다 ( https://developer.mozilla.org/en/DOM/element.1) .


0

방금 특정 텍스트가 포함 된 요소를 얻는 방법이 필요했으며 이것이 내가 생각해 낸 것입니다.

document.getElementsByInnerText()여러 요소를 얻는 데 사용 하고 (여러 요소는 동일한 정확한 텍스트를 가질 수 있음) document.getElementByInnerText()하나의 요소를 얻는 데 사용 합니다 (첫 번째 일치).

또한 someElement.getElementByInnerText()대신 요소 (예 :)를 사용하여 검색을 현지화 할 수 있습니다 document.

크로스 브라우저로 만들거나 필요를 충족시키기 위해 조정해야 할 수도 있습니다.

코드는 설명이 필요하므로 그대로 두겠습니다.

HTMLElement.prototype.getElementsByInnerText = function (text, escape) {
    var nodes  = this.querySelectorAll("*");
    var matches = [];
    for (var i = 0; i < nodes.length; i++) {
        if (nodes[i].innerText == text) {
            matches.push(nodes[i]);
        }
    }
    if (escape) {
        return matches;
    }
    var result = [];
    for (var i = 0; i < matches.length; i++) {
        var filter = matches[i].getElementsByInnerText(text, true);
        if (filter.length == 0) {
            result.push(matches[i]);
        }
    }
    return result;
};
document.getElementsByInnerText = HTMLElement.prototype.getElementsByInnerText;

HTMLElement.prototype.getElementByInnerText = function (text) {
    var result = this.getElementsByInnerText(text);
    if (result.length == 0) return null;
    return result[0];
}
document.getElementByInnerText = HTMLElement.prototype.getElementByInnerText;

console.log(document.getElementsByInnerText("Text1"));
console.log(document.getElementsByInnerText("Text2"));
console.log(document.getElementsByInnerText("Text4"));
console.log(document.getElementsByInnerText("Text6"));

console.log(document.getElementByInnerText("Text1"));
console.log(document.getElementByInnerText("Text2"));
console.log(document.getElementByInnerText("Text4"));
console.log(document.getElementByInnerText("Text6"));
<table>
    <tr>
        <td>Text1</td>
    </tr>
    <tr>
        <td>Text2</td>
    </tr>
    <tr>
        <td>
            <a href="#">Text2</a>
        </td>
    </tr>
    <tr>
        <td>
            <a href="#"><span>Text3</span></a>
        </td>
    </tr>
    <tr>
        <td>
            <a href="#">Special <span>Text4</span></a>
        </td>
    </tr>
    <tr>
        <td>
            Text5
            <a href="#">Text6</a>
            Text7
        </td>
    </tr>
</table>

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.