Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラス名だけでスパンの値を取得したい。ドキュメントには、そのクラスのスパンが 1 つだけあります。私はこのように試しました:
$('span.foo').text();
しかし、それは何も返しません。どうやってやるの?
デモ
私にとってはうまくいきます
<span class="foo"> bar </span> <script> alert($('span.foo').text()); </script>