我在页面中有很多tds。我如何提取"卡尔加里"来自源HTML。我只知道高级输入id。
<td class="Form">Calgary<input type="text" style="display:none" class="Large" value="408028" id="branchid" name="branchid"></td>
我试过的代码:
$('#branchid').parent().find("td:first").html();
答案 0 :(得分:1)
$.trim($('#branchid').parent().text())
应该这样做。
答案 1 :(得分:0)