program tip

특정 속성을 가진 모든 요소를 ​​선택하는 방법은 무엇입니까?

radiobox 2020. 11. 7. 09:10
반응형

특정 속성을 가진 모든 요소를 ​​선택하는 방법은 무엇입니까? TinyXPath로


속성 A가있는 모든 요소를 ​​선택하기위한 XPath 표현식은 무엇입니까?

const char* xpath = "//\*/\*[@A]"

이 XPath는 A 속성이있는 모든 요소를 ​​선택합니다.

//*[@A]

참고 URL : https://stackoverflow.com/questions/5617692/how-to-select-all-elements-with-a-specific-attribute-with-tinyxpath

반응형