我想獲得一個HTML元素的確切位置,並輸出該元素的地址的準確位置,邏輯是這樣的。如何獲得一個HTML元素
<div id="foo">
<article>
<div>
<p>you found me</p>
</div>
</article>
<div>
所以這是樣品HTML,現在可以說,用戶點擊該標記的東西,在這種情況下,可以說,用戶點擊「P」標籤。如何編寫我的JavaScript來輸出該'p'標籤的地址。
function getAddress(){
// code here
console.log('the user click the ')
console.log(address)
}
所需的輸出:
// Console
log: the user click the
log: #foo > article > div > p
什麼背後的任何搜索算法的邏輯是什麼?或者你想回溯到父母帶有ID? – Omi
@omi基本上我要回溯到父帶有ID –