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.
在 Firefox 中,当我尝试使用 jQuery 删除表格单元格的边框时
jQuery(td-selector).css({'border' : 'none'});
它仍然在表格单元格的某些(不是所有边缘)上显示出奇怪的边框。当我尝试使用 Firebug 检查单元格时,边框消失了。
有没有其他人遇到同样的问题?
将此添加到您的 CSS 中:
table{ border-collapse: collapse; }
MDN 参考