**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
20小时前关闭。
Improve this question
我试图加粗我行中的文本,当它已经像gmail邮件一样点击时取消加粗。在特定行上,当单击文本时,该行的文本将取消粗体。
<td ><a href="/webmcr/birthverifyview/<?=$veri['rreg_transactcode']?>" class="stretched-link" style="text-decoration: none; color: black;"><?= $veri['rreg_transactcode'] ?></a></td>
<td><?= $veri['rb_fname'] ?> <?= $veri['rb_mname'] ?> <?= $veri['rb_lname'] ?> </td>
<td><?= $veri['rb_createdat'] ?></td>
下面是我的行的例子,我想在它打开时得到粗体和非粗体
1条答案
按热度按时间dced5bon1#
绑定单击事件,然后在事件处理程序函数上使用CSS取消文本的粗体。下面是示例代码:
每个消息都有唯一的ID。然后使用localStorage保存已读取消息的id。因此,即使在页面加载时,已读消息也不会加粗。
注意,代码不会在stackoverflow snippet上运行,因为snippet中的localStorage受到限制。但会工作得很好,在snippet之外。希望对大家有帮助。