使用 jQuery 将值分配给变量时,我的行为非常奇怪。我无法从 .text() 中获取值。其他网站上的其他功能有效。只是 Spotify 是问题所在。即使加载了元素,它也不会取出东西。
功能:
function getTrackSpotify() {
var track;
track = $("#radio-artist .outgoing").text() + " - " + $("#radio-track .outgoing").text(); // both elements are empty. please check all code in pastebin.
console.log(track);
return track;
}
我今天编码了10个小时,可能是我的大脑被烧得太厉害了,我什么都看不到..
HTML:
<div id="radio-track-info">
<h2 id="radio-track">
<a class="outgoing" href="https://play.spotify.com/album/3g18ADJiQO3BNLIVZRENb1/track/04o7SCGvDEjIxinhTU4nxL/action/select">
You See Me
</a>
</h2>
<h2 id="radio-artist">
<a class="outgoing" href="https://play.spotify.com/artist/73sIBHcqh3Z3NyqHKZ7FOL">
Childish Gambino
</a>
</h2>
谢谢你。