源代码网站: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>
感谢您思考我的问题。非常感谢。
答案 0 :(得分:0)
您可以在find中指定ID:
var table = $(data).find("table#item").removeAttr("width");