如何通过查找功能及其ID来访问和操作html表?

时间:2015-03-09 00:38:39

标签: javascript jquery html

源代码网站:enter link description here

var table = $(data).find("table").removeAttr("width");

我可以使用该表,因为只有一个表标签:.... 但是如果html中有两个表,那么如何访问一个表(该表有一个id),例如:

<table width="100%" border="0" align="center" cellpadding="5" cellspacing="0" id="item">...</table>

感谢您思考我的问题。非常感谢。

1 个答案:

答案 0 :(得分:0)

您可以在find中指定ID:

var table = $(data).find("table#item").removeAttr("width");