我有以下格式的html
<html>
<body>
<div>
Hello
<span>world1
</span>
<span>world2
</span>
<span>world3
</span>
</div>
<div>
Hello
<span>world1
</span>
<span>world2
</span>
<span>world3
</span>
</div>
</body>
</html>
我需要从 div 中提取数据而不包括跨度内的文本..并将其存储在一个变量中,并在另一个变量中提取每个 div 内的第三个跨度内的文本。IE。在第一个变量中我需要你好。在第二个变量中,我需要 world3。怎么做 。每个 div 的 nodeValue 属性返回文本,包括跨度内的文本。如何避免这种情况