こんにちは、次のような html マークアップがあります。
<div class="expandNode expand">
<input id="100" type="checkbox" value="100" data-parent="">
<span>Office/Commercial</span>
</div>
コンソールで私は$('#100')
これを取得します:
[<input id="100" type="checkbox" value="100" data-parent>]
必要なのは、Office/Commercial というスパン内のテキストです。
これどうやってするの?