Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经将 iframe 放入 div 中,我知道我可以只显示我需要的数据表并隐藏页面的其余部分,但我还需要从表中删除列,这可以使用 jquery 吗?数据保存在doms中???所以希望有一个小的可能性。
感谢您的评论和帮助。
据我了解,您想删除特定的表格列吗?
$('table tr').each( function(tr_idx,el){ $(el).children('td').each( function(td_idx,el2){ //i'm removing first columns.. if(td_idx == 0){ el2.remove(); } });//inner each });//outer each