如何提取 <title> 值

How to extract the <title> value

JS不是我的主要技能,希望有人能提供帮助。我正在尝试制作一个 GTM 变量来提取 .问题是我不能使用 class="rg-trailer-icon" 作为 class 名称,因为它会根据查看的卡车类型(拖车、卡车等)发生变化

谢谢!

您可以提取标题。你只需要争先恐后。

t = document.querySelector('#scheduleContainer svg title').innerHTML
console.log(t)
<div id="scheduleContainer">
  <div>
    <div>
      <svg>
        <title>Hello</title>
        <path>
          </svg>
      </div>
    </div>
</div>

在javascript中,使用document.title应该就够了