我有以下 html,不知道如何阅读 href 标记的内容?
<p class="xyz-title">
<a href="http://www.youtube.com/embed/xyz">
<span class="field-content">Title here</span>
</a>
</p>
我试过document.getElementByClass('xyz-title')[0].innerHTML
了,但这显然不起作用。
非常感谢您为我指明了正确的方向。