jquery表分类器尝试将列值更改为粗体

时间:2014-05-16 01:15:15

标签: javascript jquery css javascript-events tablesorter

  • 我正在研究mottie table sorter插件....我能够实现 表格分类器通过json ...当我点击中的第一个名字 表头...该特定列的列值应该是 大胆.....包括“小部件”:['列']后,行会发生变化 颜色...如何使字体更改为粗体...

http://jsbin.com/novixuqo/16/edit

在下面提供我的代码

var opts = { debug: true,
  "theme": "blue",
  "widgets": ['columns'],
  "widgetOptions": {
    "build_type": "json",
    "build_source": {
      "url": "http://jsbin.com/qinikepu/4/js",
      "dataType": "json"
    }
  }
};

$('#object2Table2').tablesorter(opts);

1 个答案:

答案 0 :(得分:1)

看起来单元格获得主要类,因此添加一个设置字体粗细的规则

.primary { font-weight: bold; }