0

我想从显示在共享点日历​​列表中的日期中删除链接。如果我使用开发人员的工具,我看不到任何可以应用 CSS 禁用的锚标记。我必须通过 CSS 本身来实现这一点。

下面给出的代码来自sharepoint:

<tr class="ms-acal-summary-dayrow"> //Tr which has a class
<td date="5/12/2013" evtid="day">//td i dont know how they fetching this value and entire td has link which has to be removed.
<div>
<nobr>
Text -12 //this text "12"has link
</nobr>
</div>
</td>
</tr>

Text-12 有我想删除的链接。我如何通过 CSS 实现这一点?

4

1 回答 1

0

您可以将其用作 CSS 来删除链接
.active { pointer-events: none; cursor: default; }

http://jsfiddle.net/7EQJp/

于 2013-05-14T13:17:15.050 回答