Angularstrap数据贴纸有一种“简单”的方法来删除日期名称

时间:2017-04-26 14:28:11

标签: angularjs angular-strap datapicker

enter image description here

我只想删除这个tr,默认情况下没有特定的css选择器 我想知道是否有自定义方法将其删除

2 个答案:

答案 0 :(得分:0)

这个“tr”没有任何具体的课程。

你可以做的是在chrome dev工具中打开它,方法是右键单击元素并选择inspect,然后右键单击“ tr ”,然后单击“复制”,然后单击“复制选择器”。这是您现在可以在CSS中使用的选择器。

虽然在datePicker头元素上有ID或类。这将有助于缩短选择器路径。

对于https://angular-ui.github.io/bootstrap/#!#datepicker上的选择器,选择器将为 #datepicker> div:nth-​​child(2)> div.col-md-6.show-grid> div> div> div> div> div>表> thead> TR:第n个孩子(2)

然后使用CSS隐藏它。

答案 1 :(得分:0)

试试这个:

tr.ng-binding.ng-scope {
    display: none;
}

here