我有一个具有自动完成功能的文本框,以表格格式填充数据.我希望第一行数据为粗体. 我的代码: .data("autocomplete")._renderItem = function (ul, item) { return $("li/li").data("item.autocomplete", item).appe
我的代码:
.data("autocomplete")._renderItem = function (ul, item) { return $("<li></li>").data("item.autocomplete", item).append("<a><table><tr><td width='200px'>" + item.label + "</td>" + "<td width='110px'>" + item.val.split('~')[6] + "</td>" + "<td>" + item.val.split('~')[4] + "</td></tr></table></a>").appendTo(ul); };JS:
$('table tr:first').css('font-weight','bold');
jQuery选择器找到第一个tr: – tr:表的第一个.
只需在代码后添加此行即可.
要么
将这些行添加到您的css / style标记中.
table tr:first-child { font-weight:bold; }