我有一个要求,我需要选择粗体文字(或任何其他潜台词在下面的parragraph),只使用键盘。有可能这样做吗?
下一页比通常要长,并用作本节中所有问题和示例的基础。然而,在真正的雅思考试中,40或50个问题将基于三篇课文,而不仅仅是一篇课文,而且这些问题不会像在这里一样多次测试你对课文中某一点的理解。
首先将粗体文本放在span中,并给出一个类和for
两者必须彼此不同
<p>The reading text on the
<span class="Selectonly" unselectable="on"><b>following page is longer than usual and is used as the basis for all the questions and examples in this section</b></span></p>
或
并使用用户选择元素
.Selectonly{
user-select: none;
}