以下是获取最接近的兄弟值的脚本
var owner = $(this).closest('td').siblings('td.select_fly').html();
以下是所有者变量的输出
现在我想从所有者变量中获取BLR,请你帮忙解决这个问题:(
<p> Flight 235 <span style="margin-left:50px;">BLR</span> </p>
答案 0 :(得分:1)
你可以用这种方式find()
来获取它:
$(owner).find("span").text();
或直接:
var spanText = $(this).closest('td').siblings('td.select_fly').find("span").text();