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.
我正在使用弹性网格来显示记录集。我该如何设置
字体加粗到弹性网格的特定列?
如果有人知道这一点,请帮助我......提前谢谢......
这将使第二列变为粗体:
$("#table1").find("tr td:nth-child(2)").css("font-weight", "bold");
适用于任何桌子。