在JavaScript中,當我調用「getElementById」方法時,如何訪問該ID部分中的信息,例如鏈接?當通過ID獲取元素時,如何獲取節內的內容?
<p id="demo"><a href="someWebsite.com">some link</a></p>
<button onclick="myFunction()"> Grab Link</button>
<script>
function myFunction() {
var thisLink = document.getElementById("demo");
thisLink.(functionToGetSomeLink); //any way to get the link???
}
</script>
你試圖讓'了'作爲。節點,或者你是否試圖在'demo'中獲取html,或者你想獲得鏈接的href?請解釋你正在嘗試做什麼。 – www139
我試圖訪問標識爲id「demo」的段落標籤中的href。 –