如何使用Jquery从下面的源HTML中提取Calgary?

时间:2014-05-20 19:44:15

标签: jquery

我在页面中有很多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();

2 个答案:

答案 0 :(得分:1)

$.trim($('#branchid').parent().text())

应该这样做。

答案 1 :(得分:0)

http://fiddle.jshell.net/prollygeek/2SqLS/

只需使用:

$('#branchid').parent().text()