https://jsfiddle.net/2gf6gq0s/
我使用::after
伪元素在我的文档中插入文字:
<div class="foo"></div>
<div>test</div>
<style>
.foo::after { content: "hello johnny"; }
</style>
但是,如果我按Ctrl + F查找文本,我将无法找到单词“hello”或单词“johnny”。显然,用“test”这个词就可以了。
如何解决?
答案 0 :(得分:0)
这是不可能的(除非浏览器本身具有此功能),因为伪元素不在DOM中。所以即使使用js / jQuery你也无法选择它们