我有这个html var content = $("#directions-panel > .adp").find("div[jsinstance='"+i+"']").prop('outerHTML');
我正在尝试删除html中的第一个表格列。
这是我的尝试,但没有奏效。
content.findr(".adp-directions > tbody > tr > td.adp-substep:eq(0)").remove();
答案 0 :(得分:0)
您的代码只会移除您的第一个单元格adp-substep
。
而不是你在做什么,试试:
content.find(".adp-directions > tbody > tr").each(function(){
jQuery(this).find("> td.adp-substep:eq(0)").detach(); //or remove
});
上面的代码将删除每个表格行的第一个单元格。